ImmutableSortedDictionary.CreateBuilder メソッド

定義

オーバーロード

CreateBuilder<TKey,TValue>()

新しい変更できない並べ替えられたディクショナリ ビルダーを作成します。

CreateBuilder<TKey,TValue>(IComparer<TKey>)

新しい変更できない並べ替えられたディクショナリ ビルダーを作成します。

CreateBuilder<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>)

新しい変更できない並べ替えられたディクショナリ ビルダーを作成します。

CreateBuilder<TKey,TValue>()

ソース:
ImmutableSortedDictionary.cs
ソース:
ImmutableSortedDictionary.cs
ソース:
ImmutableSortedDictionary.cs

新しい変更できない並べ替えられたディクショナリ ビルダーを作成します。

public:
generic <typename TKey, typename TValue>
 static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue>::Builder ^ CreateBuilder();
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> ();
static member CreateBuilder : unit -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) () As ImmutableSortedDictionary(Of TKey, TValue).Builder

型パラメーター

TKey

ディクショナリによって格納されるキーの型。

TValue

ディクショナリによって格納される値の型。

戻り値

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

適用対象

CreateBuilder<TKey,TValue>(IComparer<TKey>)

ソース:
ImmutableSortedDictionary.cs
ソース:
ImmutableSortedDictionary.cs
ソース:
ImmutableSortedDictionary.cs

新しい変更できない並べ替えられたディクショナリ ビルダーを作成します。

public:
generic <typename TKey, typename TValue>
 static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue>::Builder ^ CreateBuilder(System::Collections::Generic::IComparer<TKey> ^ keyComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IComparer<TKey> keyComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IComparer<TKey>? keyComparer);
static member CreateBuilder : System.Collections.Generic.IComparer<'Key> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) (keyComparer As IComparer(Of TKey)) As ImmutableSortedDictionary(Of TKey, TValue).Builder

型パラメーター

TKey

ディクショナリによって格納されるキーの型。

TValue

ディクショナリによって格納される値の型。

パラメーター

keyComparer
IComparer<TKey>

キーの比較子。

戻り値

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

適用対象

CreateBuilder<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>)

ソース:
ImmutableSortedDictionary.cs
ソース:
ImmutableSortedDictionary.cs
ソース:
ImmutableSortedDictionary.cs

新しい変更できない並べ替えられたディクショナリ ビルダーを作成します。

public:
generic <typename TKey, typename TValue>
 static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue>::Builder ^ CreateBuilder(System::Collections::Generic::IComparer<TKey> ^ keyComparer, System::Collections::Generic::IEqualityComparer<TValue> ^ valueComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IComparer<TKey> keyComparer, System.Collections.Generic.IEqualityComparer<TValue> valueComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IComparer<TKey>? keyComparer, System.Collections.Generic.IEqualityComparer<TValue>? valueComparer);
static member CreateBuilder : System.Collections.Generic.IComparer<'Key> * System.Collections.Generic.IEqualityComparer<'Value> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) (keyComparer As IComparer(Of TKey), valueComparer As IEqualityComparer(Of TValue)) As ImmutableSortedDictionary(Of TKey, TValue).Builder

型パラメーター

TKey

ディクショナリによって格納されるキーの型。

TValue

ディクショナリによって格納される値の型。

パラメーター

keyComparer
IComparer<TKey>

キーの比較子。

valueComparer
IEqualityComparer<TValue>

値の比較子。

戻り値

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

適用対象