1 min read

Associative Array C# .Net

Paul Kinlan

Paul Kinlan

Lead of Chrome DevRel

A visitor to my site from google was looking for: associative array c# .net.

The only thing I can say about this really is that an associative array in C# is just a hash table.

The hash table associates a key of type object with an associated object.For Example:

Hashtable ht = new Hashtable();ht.Add("testKey", "AssociatedData");MessageBox.Show(ht["testKey"]);

Stay in the loop.

I'm trialing a newsletter. Join for monthly insights into web dev, Chrome, and the open web.

alternate_email

Get in touch

Open to chat about Chrome or Web development.

Book a consultation