What is the difference between Dictionary and Hashtable. How can i come to conclusion on which to use?Can anyone please help me?
|
You can read this article: http://msdn.microsoft.com/en-us/library/ms379571(v=vs.80).aspx#datastructures20_2_topic6 It's really useful. |
||||
|
|
|
I am newbie in hashtables too, but... Dictionary is a basic table with two columns (Key and Value, both has certain types) and lots of rows you add later. You will see that in dictionary you give a key and dictionary gives you value you added previously by the absolutely same key. In hashtable things are slightly different. You have table with two columns again (Key and Value, both are of "object" type). The keys might be not unique. Now you virtualy have two tables: one with two columns: Key and Hash, and other one with again two columns Hash and Value. Hash is some integer value got from Key. It turns out that while Keys might be unique, Hashes may be not. [Yet I'm not sure about this... so I said "virtualy"...] Now example:
And later you can access any value stored in Hashtable just using keys (if there are no such key it returns null):
To sumarize: Dictionary is this:
And Hashtable probabily is this:
I hope this is anything helpful. Anyone who could explain it better, do not hesitate to do so. Thank you and good luck. |
||||
|
|
|
See similar question below: .NET HashTable Vs Dictionary - Can the Dictionary be as fast? |
|||
|
|