Statistics
The Highest Post







Statistics
Count 98
Avg 20.27
Min 3
Max 21
Angualr Top questions

Details



Peter Agyekum Explain Hashtable in C#? It is used to store the key/value pairs based on hash code of the key. Key will be used to access the element in the collection. For example, Hashtable myHashtbl = new Hashtable(); myHashtbl.Add("1", "TestValue1"); myHashtbl.Add("2", "TestValue2");
Related Topics