For Answers, see/post comments

Hash Table

What is Hashtable ?
what is the use of hashTable ? and Some Example ?
any one help me ..

2 comments:

Anonymous said...

Dim table As Hashtable = New Hashtable()

Try
table.Add("Last Name", employee)
Catch argumentException As ArgumentException

End Try

the above one some little example

if u try to add again Last Name as employee it throws an exception
means hash table takes only UNIQUE values

so in the catch block i was not mentioned any statements


i hope u understood

Anonymous said...

Thanks srisha