3
Reply

When To use HashTable In C#

Mohit Kumar

Mohit Kumar

Apr 07, 2014
3.6k
0

    The Hashtable class represents a collection of key-and-value pairs that are organized based on the hash code of the key. It uses the key to access the elements in the collection.A hash table is used when you need to access elements by using key, and you can identify a useful key value. Each item in the hash table has a key/value pair. The key is used to access the items in the collection.

    Khan Abrar Ahmed
    April 16, 2014
    1

    http://www.tutorialspoint.com/csharp/csharp_hashtable.htm

    Munesh Sharma
    April 15, 2014
    1

    If we are having a large no of key value pair at that time we can use HashTable for storing the pairs For more Interview Question You can refer this link csharp interview questions

    Mohit Kumar
    April 07, 2014
    0