SortedList class is a collection of (key, value) pairs which are sorted according to keys. Those pairs can be accessible by key and as well as by index(zero-based indexing). This comes under System.Collections namespace.
SortedList.IsReadOnly property is used to get a value which indicates that a SortedList object is read-only or not.
Properties of SortedList:
- Internally the object of SortedList maintain the two arrays. The first array is used to store the elements of the list i.e. keys and the second one is used to store the associated values.
- A key cannot be null but value can be.
- As SortedList used sorting which makes it slower in comparison to Hashtable.
- The capacity of a SortedList can be dynamically increased through reallocation.
- The keys in the SortedList cannot be duplicated but values can be.
- The SortedList can be sorted according to the keys using the IComparer(Either in ascending or descending order).
Example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
using System; using System.Collections; class cce{ // Driver code public static void Main() { // Creating an SortedList SortedList mySortedList = new SortedList(); // Adding elements to SortedList mySortedList.Add("a", "A"); mySortedList.Add("b", "B"); mySortedList.Add("c", "C"); mySortedList.Add("d", "D"); // Checking if the created // SortedList is read-only or not Console.WriteLine(mySortedList.IsReadOnly); } } |
Output:
false
[…] IsReadOnly […]