ImmutableList.ToImmutableList Metoda

Definice

Přetížení

ToImmutableList<TSource>(IEnumerable<TSource>)

Vytvoří výčet sekvence a vytvoří neměnný seznam jejího obsahu.

ToImmutableList<TSource>(ImmutableList<TSource>.Builder)

Vytvoří neměnný seznam z aktuálního obsahu kolekce tvůrce.

ToImmutableList<TSource>(IEnumerable<TSource>)

Zdroj:
ImmutableList.cs
Zdroj:
ImmutableList.cs
Zdroj:
ImmutableList.cs

Vytvoří výčet sekvence a vytvoří neměnný seznam jejího obsahu.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::ImmutableList<TSource> ^ ToImmutableList(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static System.Collections.Immutable.ImmutableList<TSource> ToImmutableList<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member ToImmutableList : seq<'Source> -> System.Collections.Immutable.ImmutableList<'Source>
<Extension()>
Public Function ToImmutableList(Of TSource) (source As IEnumerable(Of TSource)) As ImmutableList(Of TSource)

Parametry typu

TSource

Typ prvků v sekvenci.

Parametry

source
IEnumerable<TSource>

Sekvence, která se má vypsat.

Návraty

ImmutableList<TSource>

Neměnný seznam, který obsahuje položky v zadané sekvenci.

Platí pro

ToImmutableList<TSource>(ImmutableList<TSource>.Builder)

Zdroj:
ImmutableList.cs
Zdroj:
ImmutableList.cs
Zdroj:
ImmutableList.cs

Vytvoří neměnný seznam z aktuálního obsahu kolekce tvůrce.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::ImmutableList<TSource> ^ ToImmutableList(System::Collections::Immutable::ImmutableList<TSource>::Builder ^ builder);
public static System.Collections.Immutable.ImmutableList<TSource> ToImmutableList<TSource> (this System.Collections.Immutable.ImmutableList<TSource>.Builder builder);
static member ToImmutableList : System.Collections.Immutable.ImmutableList<'Source>.Builder -> System.Collections.Immutable.ImmutableList<'Source>
<Extension()>
Public Function ToImmutableList(Of TSource) (builder As ImmutableList(Of TSource).Builder) As ImmutableList(Of TSource)

Parametry typu

TSource

Typ prvků v seznamu.

Parametry

builder
ImmutableList<TSource>.Builder

Tvůrce, ze které chcete vytvořit neměnný seznam.

Návraty

ImmutableList<TSource>

Neměnný seznam, který obsahuje aktuální obsah v kolekci tvůrce.

Platí pro