Compartir vía


ImmutableList.CreateRange<T>(IEnumerable<T>) Método

Definición

Crea una nueva lista inmutable que contiene los elementos especificados.

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableList<T> ^ CreateRange(System::Collections::Generic::IEnumerable<T> ^ items);
public static System.Collections.Immutable.ImmutableList<T> CreateRange<T> (System.Collections.Generic.IEnumerable<T> items);
static member CreateRange : seq<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function CreateRange(Of T) (items As IEnumerable(Of T)) As ImmutableList(Of T)

Parámetros de tipo

T

Tipo de elementos del .

Parámetros

items
IEnumerable<T>

Elementos que van a agregarse a la lista.

Devoluciones

Lista inmutable que contiene los elementos especificados.

Se aplica a