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> exampleLet'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 Sonoo 2 Peter 3 James 4 Ratan 5 Irfan Next TopicC# SortedDictionary<TKey,TValue> |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India