ImmutableSortedDictionary.CreateBuilder Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Sobrecargas
| Name | Description |
|---|---|
| CreateBuilder<TKey,TValue>() |
Cria um novo construtor de dicionário ordenado imutável. |
| CreateBuilder<TKey,TValue>(IComparer<TKey>) |
Cria um novo construtor de dicionário ordenado imutável. |
| CreateBuilder<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>) |
Cria um novo construtor de dicionário ordenado imutável. |
CreateBuilder<TKey,TValue>()
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
Cria um novo construtor de dicionário ordenado 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 Genérico
- TKey
O tipo de chaves armazenadas no dicionário.
- TValue
O tipo de valores armazenados pelo dicionário.
Devoluções
O construtor de coleções imutável.
Aplica-se a
CreateBuilder<TKey,TValue>(IComparer<TKey>)
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
Cria um novo construtor de dicionário ordenado 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 Genérico
- TKey
O tipo de chaves armazenadas no dicionário.
- TValue
O tipo de valores armazenados pelo dicionário.
Parâmetros
- keyComparer
- IComparer<TKey>
O comparador chave.
Devoluções
O construtor de coleções imutável.
Aplica-se a
CreateBuilder<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>)
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
Cria um novo construtor de dicionário ordenado 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 Genérico
- TKey
O tipo de chaves armazenadas no dicionário.
- TValue
O tipo de valores armazenados pelo dicionário.
Parâmetros
- keyComparer
- IComparer<TKey>
O comparador chave.
- valueComparer
- IEqualityComparer<TValue>
O comparador de valores.
Devoluções
O construtor de coleções imutável.