Sorted array component

E

Edward Diener

Does .net have a sorted collection component similar to the C++ std::set ? I
am not interested in a dictionary object, just a sorted collection where I
can pass in a delegate to do the sort. I am also not interested in calling
ArrayList's Sort() as I want the collection to automatically maintain its
sort order when objects are inserted into it.

I looked in the System.Collections and System.Collections.Specialized but
did not find a sorted collection class which was not also a dictionary.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top