ImmutableList.CreateRange<T>(IEnumerable<T>) Method

Definition

Creates a new immutable list that contains the specified items.

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)

Type Parameters

T

The type of items in the .

Parameters

items
IEnumerable<T>

The items to add to the list.

Returns

An immutable list that contains the specified items.

Applies to