O
Olaf Baeyens
I have to load about 10000 possible file names into a list and must have
thems sorted alphabetically, including the file information.
At this moment, in conventional C++, I use a sorted file strng list with a
binary search to add the file name at the correct location, this way it is
very fast. I but I created my own string list.
So here is my question: Does C# or the .NET framework have such a sorted
list that I can add the items during the load phase at the correct position
so that it is always automatically sorted? I don't want to reinvent the
wheel.
Thanks.
thems sorted alphabetically, including the file information.
At this moment, in conventional C++, I use a sorted file strng list with a
binary search to add the file name at the correct location, this way it is
very fast. I but I created my own string list.
So here is my question: Does C# or the .NET framework have such a sorted
list that I can add the items during the load phase at the correct position
so that it is always automatically sorted? I don't want to reinvent the
wheel.
Thanks.
