SortedDictionary<TKey,TValue>.KeyCollection 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 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))
參數
- dictionary
- SortedDictionary<TKey,TValue>
SortedDictionary<TKey,TValue>,其索引鍵反映在新 SortedDictionary<TKey,TValue>.KeyCollection 中。
例外狀況
dictionary
為 null
。
備註
SortedDictionary<TKey,TValue>.KeyCollection不是靜態複本,SortedDictionary<TKey,TValue>.KeyCollection而是參考原始 SortedDictionary<TKey,TValue>中的索引鍵。 因此,對的變更 SortedDictionary<TKey,TValue> 會繼續反映在 中 SortedDictionary<TKey,TValue>.KeyCollection。
此建構函式是 O (1) 作業。