SortedList.Keys 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 SortedList 对象中的键。
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
属性值
包含 ICollection 对象中的键的 SortedList 对象。
实现
注解
对象 ICollection 是对象的键的 SortedList 只读视图。 对基础 SortedList 的修改会立即反映在 中 ICollection。
的 ICollection 元素的排序顺序与 的 SortedList键相同。
此属性类似于 GetKeyList 方法,但返回 对象 ICollection 而不是 IList 对象。
此方法是一种 O(1)
操作。