Dictionary<TKey,TValue>.KeyCollection 建構函式

定義

初始化 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))

參數

例外狀況

dictionarynull

備註

Dictionary<TKey,TValue>.KeyCollection不是靜態複本,Dictionary<TKey,TValue>.KeyCollection而是會參考原始 Dictionary<TKey,TValue>中的索引鍵。 因此,對的變更 Dictionary<TKey,TValue> 會繼續反映在 中 Dictionary<TKey,TValue>.KeyCollection

此建構函式是 O (1) 作業。

適用於