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

Definição

Substitui o primeiro elemento igual na lista pelo elemento especificado.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::IImmutableList<T> ^ Replace(System::Collections::Immutable::IImmutableList<T> ^ list, T oldValue, T newValue);
public static System.Collections.Immutable.IImmutableList<T> Replace<T> (this System.Collections.Immutable.IImmutableList<T> list, T oldValue, T newValue);
static member Replace : System.Collections.Immutable.IImmutableList<'T> * 'T * 'T -> System.Collections.Immutable.IImmutableList<'T>
<Extension()>
Public Function Replace(Of T) (list As IImmutableList(Of T), oldValue As T, newValue 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.

oldValue
T

O elemento a ser substituído.

newValue
T

O elemento pelo qual substituir o elemento antigo.

Retornos

A nova lista – mesmo que o valor que está sendo substituído seja igual ao novo valor daquela posição.

Exceções

oldValue não existe na lista.

Aplica-se a