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>.ValueCollectionに反映されるSortedDictionary<TKey,TValue>。
例外
dictionary は nullです。
注釈
SortedDictionary<TKey,TValue>.ValueCollectionは静的コピーではありません。代わりに、SortedDictionary<TKey,TValue>.ValueCollectionは元のSortedDictionary<TKey,TValue>の値を参照します。 そのため、 SortedDictionary<TKey,TValue> への変更は引き続き SortedDictionary<TKey,TValue>.ValueCollectionに反映されます。
このコンストラクターは O(1) 操作です。