Friday, December 2, 2011

Using Hashtable in .NET

Using Hashtable in .NET



Dim _Col As New Hashtable

Adding values

_Col.Add(Key,Value)
_Col.Add(Key,Value)
_Col.Add(Key,Value)



Getting Values from hash table

Dim Value= _Col.Item(Key)

No comments:

Post a Comment