Hashtable.Keys 属性

定义

获取包含 ICollection 中的键的 Hashtable

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 中的键的 Hashtable

实现

注解

ICollection键的顺序未指定,但它与 方法返回Values的 中ICollection关联值的顺序相同。

返回的 ICollection 不是静态副本;相反, ICollection 引用回原始 Hashtable中的键。 因此,对 Hashtable 的更改将继续反映在 中 ICollection

检索此属性的值是一项 O(1) 操作。

适用于

另请参阅