ImmutableArray<T>.RemoveAt(Int32) Método
Definición
Devuelve una matriz con el elemento de la posición especificada quitado.Returns an array with the element at the specified position removed.
public:
System::Collections::Immutable::ImmutableArray<T> RemoveAt(int index);
public System.Collections.Immutable.ImmutableArray<T> RemoveAt (int index);
member this.RemoveAt : int -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveAt (index As Integer) As ImmutableArray(Of T)
Parámetros
- index
- Int32
Índice de base 0 del elemento a quitar de la matriz devuelta.The 0-based index of the element to remove from the returned array.
Devoluciones
Nueva matriz con el elemento del índice especificado quitado.A new array with the item at the specified index removed.