PDA

Click to See Complete Forum and Search --> : Keyed array object


token
Mar 29th, 2005, 01:32 PM
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.

dtch
Mar 29th, 2005, 04:01 PM
Did you try the ListItemCollection, or the NameValueCollection?

token
Mar 29th, 2005, 04:14 PM
No I didnt even think about that, I could definetly give that a whirl.

dj4uk
Mar 31st, 2005, 10:01 AM
Or you could use a Hashtable - part of the System.Collections namespace.

DJ