C# Interview Questions And Answers
Questions 41 .What class is underneath the SortedList class?
Answersorted HashTable.
Questions 42 What’s the .NET collection class that allows an element to be accessed using a unique key?
AnswerHash Table
Questions 43 Can you store multiple data types in System.Array?
Answerno,we cant store multiple data types in System.Array?
Questions 44 What does the term immutable mean?
AnswerImmutable means the data value may not be changed.
Questions 45 Describe the accessibility modifier “protected internal”.
AnswerIt is available to classes that are within the same assembly and derived from the specified base class.