Which .NET 1.1 Collections retain the order they were entered?

  • Thread starter Thread starter Imran Koradia
  • Start date Start date
I'm trying to determine which collection retain the order in which they are
added to the collection. Am I missing something in the MS documents? (like
an interface that defines this?)

Thanks,
Stan
 
dx,
Have you tried System.Collections.Specialized.NameValueCollection or
NameObjectCollectionBase?

NameObjectCollectionBase allows you to create a type safe collection that
can be accessed by key or index.

There are a number of other collection classes in
System.Collections.Specialized & System.Collections that may do what you
need...

Hope this helps
Jay
 
Back
Top