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

定義

初始化 SortedDictionary<TKey,TValue>.KeyCollection 類別的新執行個體,反映指定 SortedDictionary<TKey,TValue> 中的索引鍵。

public:
 KeyCollection(System::Collections::Generic::SortedDictionary<TKey, TValue> ^ dictionary);
public KeyCollection (System.Collections.Generic.SortedDictionary<TKey,TValue> dictionary);
new System.Collections.Generic.SortedDictionary<'Key, 'Value>.KeyCollection : System.Collections.Generic.SortedDictionary<'Key, 'Value> -> System.Collections.Generic.SortedDictionary<'Key, 'Value>.KeyCollection
Public Sub New (dictionary As SortedDictionary(Of TKey, TValue))

參數

例外狀況

dictionarynull

備註

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

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

適用於