SortedDictionary<TKey,TValue>.KeyCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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) 操作。