ImmutableDictionary<TKey,TValue>.IImmutableDictionary<TKey,TValue>.SetItems Método

Definición

Aplica un conjunto determinado de pares clave-valor a un diccionario inmutable, reemplazando cualquier clave en conflicto en el diccionario resultante.

 virtual System::Collections::Immutable::IImmutableDictionary<TKey, TValue> ^ System.Collections.Immutable.IImmutableDictionary<TKey,TValue>.SetItems(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ items) = System::Collections::Immutable::IImmutableDictionary<TKey, TValue>::SetItems;
System.Collections.Immutable.IImmutableDictionary<TKey,TValue> IImmutableDictionary<TKey,TValue>.SetItems (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>> items);
abstract member System.Collections.Immutable.IImmutableDictionary<TKey,TValue>.SetItems : seq<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> System.Collections.Immutable.IImmutableDictionary<'Key, 'Value>
override this.System.Collections.Immutable.IImmutableDictionary<TKey,TValue>.SetItems : seq<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> System.Collections.Immutable.IImmutableDictionary<'Key, 'Value>
Function SetItems (items As IEnumerable(Of KeyValuePair(Of TKey, TValue))) As IImmutableDictionary(Of TKey, TValue) Implements IImmutableDictionary(Of TKey, TValue).SetItems

Parámetros

items
IEnumerable<KeyValuePair<TKey,TValue>>

Pares clave-valor que se van a establecer en el mapa. Las claves que entren en conflicto con las claves existentes reemplazarán los valores anteriores.

Devoluciones

Copia del diccionario inmutable con pares clave-valor actualizados.

Implementaciones

Se aplica a