ImmutableSortedDictionary<TKey,TValue>.SetItems メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
変更できない並べ替えられたディクショナリで指定されたキーと値のペアを設定します。キーの既存の値が上書きされる可能性があります。
public:
System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ SetItems(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ items);
public System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> SetItems (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>> items);
member this.SetItems : seq<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function SetItems (items As IEnumerable(Of KeyValuePair(Of TKey, TValue))) As ImmutableSortedDictionary(Of TKey, TValue)
パラメーター
- items
- IEnumerable<KeyValuePair<TKey,TValue>>
ディクショナリで設定するキーと値のペア。 キーのいずれかが既にディクショナリに存在する場合、このメソッドでその以前の値が上書きされます。
戻り値
指定されたキーと値のペアが格納されている変更できないディクショナリ。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET