ImmutableList.ToImmutableList 方法

定義

多載

ToImmutableList<TSource>(IEnumerable<TSource>)

列舉序列,並產生其內容的不可變清單。

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

從產生器集合目前內容建立不可變的清單。

ToImmutableList<TSource>(IEnumerable<TSource>)

來源:
ImmutableList.cs
來源:
ImmutableList.cs
來源:
ImmutableList.cs

列舉序列,並產生其內容的不可變清單。

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)

類型參數

TSource

序列中的項目類型。

參數

source
IEnumerable<TSource>

要列舉的序列。

傳回

ImmutableList<TSource>

不可變的清單,其中包含指定序列中的項目。

適用於

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

來源:
ImmutableList.cs
來源:
ImmutableList.cs
來源:
ImmutableList.cs

從產生器集合目前內容建立不可變的清單。

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)

類型參數

TSource

清單中元素的類型。

參數

builder
ImmutableList<TSource>.Builder

用於建立不可變清單的產生器。

傳回

ImmutableList<TSource>

不可變的清單,其中包含產生器集合的目前內容。

適用於