ImmutableSortedSet.CreateBuilder メソッド

定義

オーバーロード

CreateBuilder<T>()

変更できない並べ替えられたセットの作成に使用できるコレクションを返します。

CreateBuilder<T>(IComparer<T>)

変更できない並べ替えられたセットの作成に使用できるコレクションを返します。

CreateBuilder<T>()

ソース:
ImmutableSortedSet.cs
ソース:
ImmutableSortedSet.cs
ソース:
ImmutableSortedSet.cs

変更できない並べ替えられたセットの作成に使用できるコレクションを返します。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableSortedSet<T>::Builder ^ CreateBuilder();
public static System.Collections.Immutable.ImmutableSortedSet<T>.Builder CreateBuilder<T> ();
static member CreateBuilder : unit -> System.Collections.Immutable.ImmutableSortedSet<'T>.Builder
Public Function CreateBuilder(Of T) () As ImmutableSortedSet(Of T).Builder

型パラメーター

T

コレクションによって格納される項目の型。

戻り値

変更できないコレクション ビルダー。

適用対象

CreateBuilder<T>(IComparer<T>)

ソース:
ImmutableSortedSet.cs
ソース:
ImmutableSortedSet.cs
ソース:
ImmutableSortedSet.cs

変更できない並べ替えられたセットの作成に使用できるコレクションを返します。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableSortedSet<T>::Builder ^ CreateBuilder(System::Collections::Generic::IComparer<T> ^ comparer);
public static System.Collections.Immutable.ImmutableSortedSet<T>.Builder CreateBuilder<T> (System.Collections.Generic.IComparer<T> comparer);
public static System.Collections.Immutable.ImmutableSortedSet<T>.Builder CreateBuilder<T> (System.Collections.Generic.IComparer<T>? comparer);
static member CreateBuilder : System.Collections.Generic.IComparer<'T> -> System.Collections.Immutable.ImmutableSortedSet<'T>.Builder
Public Function CreateBuilder(Of T) (comparer As IComparer(Of T)) As ImmutableSortedSet(Of T).Builder

型パラメーター

T

コレクションによって格納される項目の型。

パラメーター

comparer
IComparer<T>

セット内の項目が等しいかどうかの比較に使用される比較子。

戻り値

変更できないコレクション。

適用対象