What’s a HashTable ?
By in ASP.NET on Jul 26 2006
  • Bill Bort
    Jul, 2006 26

    HashTable is an object from System.Collections namespace. It allows to store/retrieve info as key-value pair.

    e.g.

    Hashtable ht = new Hashtable();

    ht.Add("key1", "Value1");

    System.Console.WriteLine(ht["key1"].ToString());

    ======= Printed result ===

    Value1

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS