ImmutableDictionary.CreateBuilder Metoda

Definicja

Przeciążenia

CreateBuilder<TKey,TValue>()

Tworzy nowego niezmiennego konstruktora słownika.

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

Tworzy nowego niezmiennego konstruktora słownika.

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

Tworzy nowego niezmiennego konstruktora słownika.

CreateBuilder<TKey,TValue>()

Źródło:
ImmutableDictionary.cs
Źródło:
ImmutableDictionary.cs
Źródło:
ImmutableDictionary.cs

Tworzy nowego niezmiennego konstruktora słownika.

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

Parametry typu

TKey

Typ kluczy przechowywanych przez słownik.

TValue

Typ wartości przechowywanych przez słownik.

Zwraca

Nowy budowniczy.

Dotyczy

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

Źródło:
ImmutableDictionary.cs
Źródło:
ImmutableDictionary.cs
Źródło:
ImmutableDictionary.cs

Tworzy nowego niezmiennego konstruktora słownika.

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

Parametry typu

TKey

Typ kluczy przechowywanych przez słownik.

TValue

Typ wartości przechowywanych przez słownik.

Parametry

keyComparer
IEqualityComparer<TKey>

Moduł porównujący kluczy.

Zwraca

Nowy budowniczy.

Dotyczy

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

Źródło:
ImmutableDictionary.cs
Źródło:
ImmutableDictionary.cs
Źródło:
ImmutableDictionary.cs

Tworzy nowego niezmiennego konstruktora słownika.

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

Parametry typu

TKey

Typ kluczy przechowywanych przez słownik.

TValue

Typ wartości przechowywanych przez słownik.

Parametry

keyComparer
IEqualityComparer<TKey>

Moduł porównujący kluczy.

valueComparer
IEqualityComparer<TValue>

Porównujący wartości.

Zwraca

Nowy budowniczy.

Dotyczy