ImmutableArray<T>.IImmutableList<T>.Add(T) Método
Definição
Retorna uma cópia da matriz original com o item especificado adicionado ao final.Returns a copy of the original array with the specified item added to the end.
virtual System::Collections::Immutable::IImmutableList<T> ^ System.Collections.Immutable.IImmutableList<T>.Add(T value) = System::Collections::Immutable::IImmutableList<T>::Add;
System.Collections.Immutable.IImmutableList<T> IImmutableList<T>.Add (T value);
abstract member System.Collections.Immutable.IImmutableList<T>.Add : 'T -> System.Collections.Immutable.IImmutableList<'T>
override this.System.Collections.Immutable.IImmutableList<T>.Add : 'T -> System.Collections.Immutable.IImmutableList<'T>
Function Add (value As T) As IImmutableList(Of T) Implements IImmutableList(Of T).Add
Parâmetros
- value
- T
O valor a ser adicionado ao final da matriz.The value to add to the end of the array.
Retornos
Uma nova matriz com o item especificado adicionado ao final.A new array with the specified item added to the end.
Implementações
Comentários
Este membro é uma implementação do membro de interface explícita.This member is an explicit interface member implementation. Ele só pode ser usado quando a instância de ImmutableArray<T> é convertida em uma interface de IImmutableList<T>.It can be used only when the ImmutableArray<T> instance is cast to an IImmutableList<T> interface.