-
Keyed array object
I was hoping someone could tell me if there is a keyed array object that I would be able to use in ASP.net.
Something that would allow me to access the values of the array, not by their subscript in the array but by a key that I would assign to each value.
Thanks again.
-
Re: Keyed array object
Did you try the ListItemCollection, or the NameValueCollection?
-
Re: Keyed array object
No I didnt even think about that, I could definetly give that a whirl.
-
Re: Keyed array object
Or you could use a Hashtable - part of the System.Collections namespace.
DJ