SortedList.Keys Property

Definition

Gets the keys in a SortedList object.

public:
 virtual property System::Collections::ICollection ^ Keys { System::Collections::ICollection ^ get(); };
public virtual System.Collections.ICollection Keys { get; }
member this.Keys : System.Collections.ICollection
Public Overridable ReadOnly Property Keys As ICollection

Property Value

An ICollection object containing the keys in the SortedList object.

Implements

Remarks

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

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

This property is similar to the GetKeyList method, but returns an ICollection object instead of an IList object.

This method is an O(1) operation.

Applies to

See also