Short C# Interview Questions.
1. What’s the .NET datatype that allows the retrieval of data by a unique key?
Ans. HashTable.
2. What’s class SortedList underneath?
Ans. A sorted HashTable.
3. What’s the difference between // comments, /* */ comments and /// comments?
Ans. Single-line, multi-line and XML documentation comments.