ImmutableDictionary<TKey,TValue>.RemoveRange(IEnumerable<TKey>) Método
Definición
Quita los elementos con la clave especificada del diccionario inmutable.Removes the elements with the specified keys from the immutable dictionary.
public:
System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ RemoveRange(System::Collections::Generic::IEnumerable<TKey> ^ keys);
public System.Collections.Immutable.ImmutableDictionary<TKey,TValue> RemoveRange (System.Collections.Generic.IEnumerable<TKey> keys);
member this.RemoveRange : seq<'Key> -> System.Collections.Immutable.ImmutableDictionary<'Key, 'Value>
Public Function RemoveRange (keys As IEnumerable(Of TKey)) As ImmutableDictionary(Of TKey, TValue)
Parámetros
- keys
- IEnumerable<TKey>
Claves de los elementos que se van a quitar.The keys of the elements to remove.
Devoluciones
Nuevo diccionario inmutable con las claves especificadas eliminados; o bien esta instancia si no se encuentran en el diccionario las claves especificadas.A new immutable dictionary with the specified keys removed; or this instance if the specified keys cannot be found in the dictionary.