Dictionary<TKey,TValue>.KeyCollection コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した Dictionary<TKey,TValue>.KeyCollection 内のキーを反映する、Dictionary<TKey,TValue> クラスの新しいインスタンスを初期化します。
public:
KeyCollection(System::Collections::Generic::Dictionary<TKey, TValue> ^ dictionary);
public KeyCollection (System.Collections.Generic.Dictionary<TKey,TValue> dictionary);
new System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection : System.Collections.Generic.Dictionary<'Key, 'Value> -> System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection
Public Sub New (dictionary As Dictionary(Of TKey, TValue))
パラメーター
- dictionary
- Dictionary<TKey,TValue>
新しい Dictionary<TKey,TValue> にキーが反映される Dictionary<TKey,TValue>.KeyCollection。
例外
dictionary
は null
です。
注釈
Dictionary<TKey,TValue>.KeyCollectionは静的コピーではありません。代わりに、 Dictionary<TKey,TValue>.KeyCollection は元Dictionary<TKey,TValue>の のキーを参照します。 したがって、 への変更は Dictionary<TKey,TValue> 、 に反映され Dictionary<TKey,TValue>.KeyCollection続けます。
このコンストラクターは O(1) 操作です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET