Home » C# SortedDictionary

C# SortedDictionary

by Online Tutorials Library

C# SortedDictionary<TKey, TValue>

C# SortedDictionary<TKey, TValue> class uses the concept of hashtable. It stores values on the basis of key. It contains unique keys and maintains ascending order on the basis of key. By the help of key, we can easily search or remove elements. It is found in System.Collections.Generic namespace.

C# SortedDictionary<TKey, TValue> example

Let’s see an example of generic SortedDictionary<TKey, TValue> class that stores elements using Add() method and iterates elements using for-each loop. Here, we are using KeyValuePair class to get key and value.

Output:

1 tutor 2 Irfan 3 Ratan 4 Peter 5 James 

You may also like