Can not reference "item" property of HashTable

  • Thread starter Thread starter Thomas Wang
  • Start date Start date
T

Thomas Wang

i declare a hashtable in c#, i can not find "hashtable.item" property
as the specification declared, What i can do?

B.Rgds
 
Thomas Wang said:
i declare a hashtable in c#, i can not find "hashtable.item" property
as the specification declared, What i can do?

It's an indexer - you need to use the indexer syntax:

Hashtable foo = new Hashtable();

foo["hello"]="there"; // Effectively foo.set_Item("hello", "there")
Console.WriteLine (foo["hello"]); // Using foo.get_Item("hello")
 
Back
Top