Home » C# Dictionary

C# Dictionary<TKey, TValue>

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

C# Dictionary<TKey, TValue> example

Let’s see an example of generic Dictionary<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 Peter 3 James 4 Ratan 5 Irfan 

You may also like