SortedDictionary<TKey,TValue>.ValueCollection 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 SortedDictionary<TKey,TValue>.ValueCollection 類別的新執行個體,反映指定 SortedDictionary<TKey,TValue> 中的值。
public:
ValueCollection(System::Collections::Generic::SortedDictionary<TKey, TValue> ^ dictionary);
public ValueCollection (System.Collections.Generic.SortedDictionary<TKey,TValue> dictionary);
new System.Collections.Generic.SortedDictionary<'Key, 'Value>.ValueCollection : System.Collections.Generic.SortedDictionary<'Key, 'Value> -> System.Collections.Generic.SortedDictionary<'Key, 'Value>.ValueCollection
Public Sub New (dictionary As SortedDictionary(Of TKey, TValue))
參數
- dictionary
- SortedDictionary<TKey,TValue>
SortedDictionary<TKey,TValue>,其值反映在新 SortedDictionary<TKey,TValue>.ValueCollection 中。
例外狀況
dictionary
為 null
。
備註
SortedDictionary<TKey,TValue>.ValueCollection不是靜態複本,SortedDictionary<TKey,TValue>.ValueCollection而是會參考原始 SortedDictionary<TKey,TValue>中的值。 因此,對的變更 SortedDictionary<TKey,TValue> 會繼續反映在 中 SortedDictionary<TKey,TValue>.ValueCollection。
此建構函式是 O (1) 作業。