About Hashtables
-
I need to know what is Hashtables? and how it is used. Plz give me some examples
Regards, LEE
-
I need to know what is Hashtables? and how it is used. Plz give me some examples
Regards, LEE
As simple as this... http://www.google.co.in/search?num=30&hl=en&newwindow=1&q=Hashtable+%2B+C%23&btnG=Search&meta=[^]
Koushik
-
I need to know what is Hashtables? and how it is used. Plz give me some examples
Regards, LEE
A hashtable is a glorified array Instead of having an index and value you have a key and a value, so you can specify the index as "myKey" for example and get the value for it like so...
myHashTable["myKey"]
The other advantage is that a hashtable can grow indefinitely (until ram runs out) To iterate Though each entry in a hash table do thisforeach (DictionaryEntry de in myHash)
Hope it helpsHarvey Saayman - South Africa Junior Developer .Net, C#, SQL think BIG and kick ASS
you.suck = (you.passion != Programming)