SortedDictionary<TKey,TValue>.ValueCollection 构造函数

定义

初始化类的新实例,该实例 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))

参数

例外

dictionarynull

注解

这不是 SortedDictionary<TKey,TValue>.ValueCollection 静态副本;而是 SortedDictionary<TKey,TValue>.ValueCollection 引用原始 SortedDictionary<TKey,TValue>副本中的值。 因此,对 SortedDictionary<TKey,TValue> 继续所做的更改将反映在中 SortedDictionary<TKey,TValue>.ValueCollection

此构造函数是 O(1) 操作。

适用于