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;
An IList containing the keys in the SortedList.
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.
SortedList Class | SortedList Members | System.Collections Namespace | IList | GetValueList | Keys