Hash table

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

Hi Everyone,

Just a quick question, I hear the term Hash table alot in
C#, what is it, and what can it do for me and HOW can I
use it in my programming?

Thanks alot for your time,effort and knowledge

Kevin
 
Hi Everyone,

Just a quick question, I hear the term Hash table alot in
C#, what is it, and what can it do for me and HOW can I
use it in my programming?

Thanks alot for your time,effort and knowledge

Kevin,

System.Collections.Hashtable.

Sometimes called an "associative array", a Hashtable allows the easy
storage and retrieval of key-value pairs of data.


Hope this helps.

Chris.
 
Back
Top