ImmutableSortedDictionary.Create Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Create<TKey,TValue>() |
Cria um dicionário classificado imutável vazio. |
Create<TKey,TValue>(IComparer<TKey>) |
Cria um dicionário classificado imutável vazio que usa o comparador de chave especificado. |
Create<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>) |
Cria um dicionário classificado imutável vazio que usa os comparadores de chave e valor especificados. |
Create<TKey,TValue>()
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
Cria um dicionário classificado imutável vazio.
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ Create();
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> ();
static member Create : unit -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function Create(Of TKey, TValue) () As ImmutableSortedDictionary(Of TKey, TValue)
Parâmetros de tipo
- TKey
O tipo de chaves armazenadas pelo dicionário.
- TValue
O tipo de valores armazenados pelo dicionário.
Retornos
Um dicionário classificado imutável vazio.
Aplica-se a
Create<TKey,TValue>(IComparer<TKey>)
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
Cria um dicionário classificado imutável vazio que usa o comparador de chave especificado.
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ Create(System::Collections::Generic::IComparer<TKey> ^ keyComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IComparer<TKey> keyComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IComparer<TKey>? keyComparer);
static member Create : System.Collections.Generic.IComparer<'Key> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function Create(Of TKey, TValue) (keyComparer As IComparer(Of TKey)) As ImmutableSortedDictionary(Of TKey, TValue)
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>
A implementação a ser usada para determinar a igualdade de chaves no dicionário.
Retornos
Um dicionário classificado imutável vazio.
Aplica-se a
Create<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>)
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
- Origem:
- ImmutableSortedDictionary.cs
Cria um dicionário classificado imutável vazio que usa os comparadores de chave e valor especificados.
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ Create(System::Collections::Generic::IComparer<TKey> ^ keyComparer, System::Collections::Generic::IEqualityComparer<TValue> ^ valueComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IComparer<TKey> keyComparer, System.Collections.Generic.IEqualityComparer<TValue> valueComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IComparer<TKey>? keyComparer, System.Collections.Generic.IEqualityComparer<TValue>? valueComparer);
static member Create : System.Collections.Generic.IComparer<'Key> * System.Collections.Generic.IEqualityComparer<'Value> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function Create(Of TKey, TValue) (keyComparer As IComparer(Of TKey), valueComparer As IEqualityComparer(Of TValue)) As ImmutableSortedDictionary(Of TKey, TValue)
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>
A implementação a ser usada para determinar a igualdade de chaves no dicionário.
- valueComparer
- IEqualityComparer<TValue>
A implementação a ser usada para determinar igualdade de valores no dicionário.
Retornos
Um dicionário classificado imutável vazio.