ImmutableSortedDictionary<TKey,TValue>.AddRange メソッド

定義

特定のキーと値のペアを、変更できない並べ替えられたディクショナリに追加します。

public:
 System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ AddRange(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ items);
public System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> AddRange (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>> items);
member this.AddRange : seq<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function AddRange (items As IEnumerable(Of KeyValuePair(Of TKey, TValue))) As ImmutableSortedDictionary(Of TKey, TValue)

パラメーター

items
IEnumerable<KeyValuePair<TKey,TValue>>

追加するキーと値のペア。

戻り値

追加のキーと値のペアを格納する、新しい変更できないディクショナリ。

例外

所定のキーの 1 つはディクショナリに既に存在しますが、値が異なります。

適用対象