Share via


ImmutableSortedDictionary.CreateBuilder Método

Definição

Sobrecargas

CreateBuilder<TKey,TValue>()

Cria um novo construtor de dicionário classificado imutável.

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

Cria um novo construtor de dicionário classificado imutável.

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

Cria um novo construtor de dicionário classificado imutável.

CreateBuilder<TKey,TValue>()

Origem:
ImmutableSortedDictionary.cs
Origem:
ImmutableSortedDictionary.cs
Origem:
ImmutableSortedDictionary.cs

Cria um novo construtor de dicionário classificado imutável.

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

Parâmetros de tipo

TKey

O tipo de chaves armazenadas pelo dicionário.

TValue

O tipo de valores armazenados pelo dicionário.

Retornos

O construtor de coleção imutável.

Aplica-se a

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

Origem:
ImmutableSortedDictionary.cs
Origem:
ImmutableSortedDictionary.cs
Origem:
ImmutableSortedDictionary.cs

Cria um novo construtor de dicionário classificado imutável.

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

Parâmetros de tipo

TKey

O tipo de chaves armazenadas pelo dicionário.

TValue

O tipo de valores armazenados pelo dicionário.

Parâmetros

keyComparer
IComparer<TKey>

O comparador de chave.

Retornos

O construtor de coleção imutável.

Aplica-se a

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

Origem:
ImmutableSortedDictionary.cs
Origem:
ImmutableSortedDictionary.cs
Origem:
ImmutableSortedDictionary.cs

Cria um novo construtor de dicionário classificado imutável.

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

Parâmetros de tipo

TKey

O tipo de chaves armazenadas pelo dicionário.

TValue

O tipo de valores armazenados pelo dicionário.

Parâmetros

keyComparer
IComparer<TKey>

O comparador de chave.

valueComparer
IEqualityComparer<TValue>

O comparador de valor.

Retornos

O construtor de coleção imutável.

Aplica-se a