ImmutableSortedDictionary<TKey,TValue>.Remove(TKey) Método

Definición

Quita el elemento con el valor especificado del diccionario ordenado inmutable.

public:
 System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ Remove(TKey value);
public System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Remove (TKey value);
member this.Remove : 'Key -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function Remove (value As TKey) As ImmutableSortedDictionary(Of TKey, TValue)

Parámetros

value
TKey

Valor del elemento que se va a quitar.

Devoluciones

Un nuevo diccionario inmutable con el elemento especificado eliminado; o bien esta instancia si no se encuentra el valor especificado en el diccionario.

Se aplica a