ImmutableArray<T>.Add(T) Método
Definición
Devuelve una copia de la matriz original con el elemento especificado que se agrega al final.Returns a copy of the original array with the specified item added to the end.
public:
System::Collections::Immutable::ImmutableArray<T> Add(T item);
public System.Collections.Immutable.ImmutableArray<T> Add (T item);
member this.Add : 'T -> System.Collections.Immutable.ImmutableArray<'T>
Public Function Add (item As T) As ImmutableArray(Of T)
Parámetros
- item
- T
Elemento que se va a agregar al final de la matriz.The item to be added to the end of the array.
Devoluciones
Nueva matriz con el elemento especificado agregado al final.A new array with the specified item added to the end.