Dictionary
Dim dictionary As New Dictionary(Of String, Integer )
The above is example of Dictionary..
u can add new values as
key->String and
Value->Integer
Hashtable
Dim Hash_Table_Name As New Hashtable
In hash Table key and values are not considered data types..
ex for hash table.
Hash_Table_Name.Add("1","One")
Hash_Table_Name.Add("number","54766") Regards,
Singaravel M