NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SortedList Constructor ()

Creates an empty SortedList with an initial capacity of 16, sorted according to the IComparable interface implemented by each key added to the SortedList.

[Visual Basic]
Overloads Public Sub New()
[C#]
public SortedList();
[C++]
public: SortedList();
[JScript]
public function SortedList();

Remarks

When adding elements to the list and the number of elements exceeds the capacity, the capacity is doubled.

The elements are sorted according to the IComparable implementation of each key added to the SortedList.

See Also

SortedList Class | SortedList Members | System.Collections Namespace | SortedList Constructor Overload List | IComparable | Capacity