Compartir a través de


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

Definición

Crea una nueva pila inmutable que contiene los elementos especificados.

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

Parámetros de tipo

T

Tipo de elementos de la pila.

Parámetros

items
IEnumerable<T>

Elementos que se van a agregar a la pila antes de que se convierta en inmutable.

Devoluciones

Pila inmutable que contiene los elementos especificados.

Se aplica a