Associative Array C# .Net

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.


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan

<p>A visitor to my site from google was looking for: associative array c# .net.<p />The only thing I can say about this really is that an associative array in C# is just a hash table.<p />The hash table associates a key of type object with an associated object.For Example:<p />Hashtable ht = new Hashtable();ht.Add("testKey", "AssociatedData");MessageBox.Show(ht["testKey"]);<p /></p>


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan


Print Share Comment Cite Upload Translate Updates
APA

Paul Kinlan | Sciencx (2006-04-20T00:00:00+00:00) Associative Array C# .Net. Retrieved from https://www.scien.cx/2006/04/20/associative-array-c-net/

MLA
" » Associative Array C# .Net." Paul Kinlan | Sciencx - Thursday April 20, 2006, https://www.scien.cx/2006/04/20/associative-array-c-net/
HARVARD
Paul Kinlan | Sciencx Thursday April 20, 2006 » Associative Array C# .Net., viewed ,<https://www.scien.cx/2006/04/20/associative-array-c-net/>
VANCOUVER
Paul Kinlan | Sciencx - » Associative Array C# .Net. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2006/04/20/associative-array-c-net/
CHICAGO
" » Associative Array C# .Net." Paul Kinlan | Sciencx - Accessed . https://www.scien.cx/2006/04/20/associative-array-c-net/
IEEE
" » Associative Array C# .Net." Paul Kinlan | Sciencx [Online]. Available: https://www.scien.cx/2006/04/20/associative-array-c-net/. [Accessed: ]
rf:citation
» Associative Array C# .Net | Paul Kinlan | Sciencx | https://www.scien.cx/2006/04/20/associative-array-c-net/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.