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) 操作。