Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
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