Steve C. Orr said:
As far as I can tell an ArrayList supports single item entries, not
name/value pairs? Am I missing something? It wouldn't be the first time.
If that doesn't suit your needs, there are a variety of collections for
you
to choose from, and they are all listed here:
http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemCollections.asp?frame=true
Yeah, I have been through these. SortedList and Hashtable both stored
name/value pairs -- or key/value as they write there -- but both reorder
the
data entered. DictionaryBase supports pairs, but I can't tell from the
docs
if it forces sorting. It also looks like you have to inherit and write a
bunch of methods to use it.