ImmutableArray<T>.AddRange Método
Definición
Sobrecargas
AddRange(IEnumerable<T>) |
Devuelve una copia de la matriz original con los elementos especificados agregados al final de la matriz.Returns a copy of the original array with the specified elements added to the end of the array. |
AddRange(ImmutableArray<T>) |
Devuelve una copia de la matriz original con los elementos especificados agregados al final de la matriz.Returns a copy of the original array with the specified elements added to the end of the array. |
AddRange(IEnumerable<T>)
Devuelve una copia de la matriz original con los elementos especificados agregados al final de la matriz.Returns a copy of the original array with the specified elements added to the end of the array.
public:
System::Collections::Immutable::ImmutableArray<T> AddRange(System::Collections::Generic::IEnumerable<T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> AddRange (System.Collections.Generic.IEnumerable<T> items);
member this.AddRange : seq<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function AddRange (items As IEnumerable(Of T)) As ImmutableArray(Of T)
Parámetros
- items
- IEnumerable<T>
Elementos que se van a agregar la matriz.The elements to add to the array.
Devoluciones
Nueva matriz con los elementos agregados.A new array with the elements added.
Se aplica a
AddRange(ImmutableArray<T>)
Devuelve una copia de la matriz original con los elementos especificados agregados al final de la matriz.Returns a copy of the original array with the specified elements added to the end of the array.
public:
System::Collections::Immutable::ImmutableArray<T> AddRange(System::Collections::Immutable::ImmutableArray<T> items);
public System.Collections.Immutable.ImmutableArray<T> AddRange (System.Collections.Immutable.ImmutableArray<T> items);
member this.AddRange : System.Collections.Immutable.ImmutableArray<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function AddRange (items As ImmutableArray(Of T)) As ImmutableArray(Of T)
Parámetros
- items
- ImmutableArray<T>
Elementos que se van a agregar la matriz.The elements to add to the array.
Devoluciones
Nueva matriz con los elementos agregados.A new array with the elements added.