If you really are after the .NET equivalent of SortedList , which is actually a map ordered by its keys, then the closest equivalent is probably TreeMap . This is more like a SortedDictionary than a SortedList , given that it is a tree, not just a list, but it is probably the closest option available.
However, what you described is more like an ArrayList , which is similar to the .NET List<T> .
source share