ImmutableList.Remove<T>(IImmutableList<T>, T) Método

Definição

Remove o valor especificado dessa lista.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::IImmutableList<T> ^ Remove(System::Collections::Immutable::IImmutableList<T> ^ list, T value);
public static System.Collections.Immutable.IImmutableList<T> Remove<T> (this System.Collections.Immutable.IImmutableList<T> list, T value);
static member Remove : System.Collections.Immutable.IImmutableList<'T> * 'T -> System.Collections.Immutable.IImmutableList<'T>
<Extension()>
Public Function Remove(Of T) (list As IImmutableList(Of T), value As T) As IImmutableList(Of T)

Parâmetros de tipo

T

O tipo de itens na lista.

Parâmetros

list
IImmutableList<T>

A lista a ser pesquisada.

value
T

O valor a ser removido.

Retornos

Uma nova lista imutável com o elemento removido ou essa lista se o elemento não estiver nela.

Aplica-se a