ImmutableSortedDictionary<TKey,TValue>.AddRange Method

Definition

Adds the specific key/value pairs to the immutable sorted dictionary.

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)

Parameters

items
IEnumerable<KeyValuePair<TKey,TValue>>

The key/value pairs to add.

Returns

A new immutable dictionary that contains the additional key/value pairs.

Exceptions

One of the given keys already exists in the dictionary but has a different value.

Applies to