ImmutableSortedDictionary.CreateBuilder Methode

Definitie

Overloads

Name Description
CreateBuilder<TKey,TValue>()

Hiermee maakt u een nieuwe onveranderbare opbouwfunctie voor gesorteerde woordenlijst.

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

Hiermee maakt u een nieuwe onveranderbare opbouwfunctie voor gesorteerde woordenlijst.

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

Hiermee maakt u een nieuwe onveranderbare opbouwfunctie voor gesorteerde woordenlijst.

CreateBuilder<TKey,TValue>()

Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs

Hiermee maakt u een nieuwe onveranderbare opbouwfunctie voor gesorteerde woordenlijst.

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

Type parameters

TKey

Het type sleutels dat door de woordenlijst is opgeslagen.

TValue

Het type waarden dat door de woordenlijst is opgeslagen.

Retouren

De onveranderbare opbouwfunctie voor verzamelingen.

Van toepassing op

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

Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs

Hiermee maakt u een nieuwe onveranderbare opbouwfunctie voor gesorteerde woordenlijst.

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

Type parameters

TKey

Het type sleutels dat door de woordenlijst is opgeslagen.

TValue

Het type waarden dat door de woordenlijst is opgeslagen.

Parameters

keyComparer
IComparer<TKey>

De belangrijkste vergelijkingsfunctie.

Retouren

De onveranderbare opbouwfunctie voor verzamelingen.

Van toepassing op

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

Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs
Bron:
ImmutableSortedDictionary.cs

Hiermee maakt u een nieuwe onveranderbare opbouwfunctie voor gesorteerde woordenlijst.

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

Type parameters

TKey

Het type sleutels dat door de woordenlijst is opgeslagen.

TValue

Het type waarden dat door de woordenlijst is opgeslagen.

Parameters

keyComparer
IComparer<TKey>

De belangrijkste vergelijkingsfunctie.

valueComparer
IEqualityComparer<TValue>

De waarde-vergelijking.

Retouren

De onveranderbare opbouwfunctie voor verzamelingen.

Van toepassing op