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.GetKeyList

Gets the keys in the SortedList.

[Visual Basic]
Overridable Public Function GetKeyList() As IList
[C#]
public virtual IList GetKeyList();
[C++]
public: virtual IList* GetKeyList();
[JScript]
public function GetKeyList() : IList;

Return Value

An IList containing the keys in the SortedList.

Remarks

This method can be overridden by a derived class.

The returned IList is a read-only view of the keys of the SortedList. Modifications made to the underlying SortedList are immediately reflected in the IList.

The elements of the returned IList are sorted in the same order as the keys of the SortedList.

Similar to Keys, but returns an IList instead of an ICollection.

See Also

SortedList Class | SortedList Members | System.Collections Namespace | IList | GetValueList | Keys