Hash table
What is hash table and what are their exact use?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Mar 5, 2012, 7:14 AM
Notice that a Hashtable stores everything internally as type System.Object. When retrieving a value, you therefore have to cast it to its actual type. This is unnecessary when using Dictionary
Akash AhlawatPosted Mar 6, 2012, 3:13 AM
Jignesh TrivediPosted Mar 6, 2012, 12:48 AM
A HashTable collection stores a (Key and Value) pair and uses the "Key" to hash and obtain the storage location.
The "Key" is immutable and cann't have duplicate entries in the HashTable.
it also provided a indexer.
u can learn more from
http://msdn.microsoft.com/en-us/library/7b3y50ay.aspx
hope this help,