ImmutableList.ToImmutableList メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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>
ビルダーのコレクションの現在の内容を含む、変更できないリスト。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET