Dictionary<TKey,TValue>.KeyCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 Dictionary<TKey,TValue>.KeyCollection 类的新实例,该实例反映指定的 Dictionary<TKey,TValue> 中的键。
public:
KeyCollection(System::Collections::Generic::Dictionary<TKey, TValue> ^ dictionary);
public KeyCollection (System.Collections.Generic.Dictionary<TKey,TValue> dictionary);
new System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection : System.Collections.Generic.Dictionary<'Key, 'Value> -> System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection
Public Sub New (dictionary As Dictionary(Of TKey, TValue))
参数
- dictionary
- Dictionary<TKey,TValue>
Dictionary<TKey,TValue>,其键反映在新的 Dictionary<TKey,TValue>.KeyCollection 中。
例外
dictionary
为 null
。
注解
Dictionary<TKey,TValue>.KeyCollection不是静态副本;相反, Dictionary<TKey,TValue>.KeyCollection 引用回原始 Dictionary<TKey,TValue>中的键。 因此,对 Dictionary<TKey,TValue> 的更改将继续反映在 中 Dictionary<TKey,TValue>.KeyCollection。
此构造函数是一个 O (1) 操作。