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"]);
1 min read
Associative Array C# .Net
Paul Kinlan
Lead of Chrome DevRel
See Also
Stay in the loop.
I'm trialing a newsletter. Join for monthly insights into web dev, Chrome, and the open web.