ImmutableSortedDictionary.Create Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
Create<TKey,TValue>() |
Crea un diccionario ordenado inmutable vacío. |
Create<TKey,TValue>(IComparer<TKey>) |
Crea un diccionario ordenado inmutable vacío que usa el comparador de claves especificado. |
Create<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>) |
Crea un diccionario ordenado inmutable vacío que usa los comparadores de claves y valores especificado. |
Create<TKey,TValue>()
- Source:
- ImmutableSortedDictionary.cs
- Source:
- ImmutableSortedDictionary.cs
- Source:
- ImmutableSortedDictionary.cs
Crea un diccionario ordenado inmutable vacío.
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
Tipo de claves almacenadas por el diccionario.
- TValue
Tipo de valores almacenados por el diccionario.
Devoluciones
Diccionario ordenado inmutable vacío.
Se aplica a
Create<TKey,TValue>(IComparer<TKey>)
- Source:
- ImmutableSortedDictionary.cs
- Source:
- ImmutableSortedDictionary.cs
- Source:
- ImmutableSortedDictionary.cs
Crea un diccionario ordenado inmutable vacío que usa el comparador de claves 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
Tipo de claves almacenadas por el diccionario.
- TValue
Tipo de valores almacenados por el diccionario.
Parámetros
- keyComparer
- IComparer<TKey>
Implementación a utilizar para determinar la igualdad de claves en el diccionario.
Devoluciones
Diccionario ordenado inmutable vacío.
Se aplica a
Create<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>)
- Source:
- ImmutableSortedDictionary.cs
- Source:
- ImmutableSortedDictionary.cs
- Source:
- ImmutableSortedDictionary.cs
Crea un diccionario ordenado inmutable vacío que usa los comparadores de claves y valores especificado.
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
Tipo de claves almacenadas por el diccionario.
- TValue
Tipo de valores almacenados por el diccionario.
Parámetros
- keyComparer
- IComparer<TKey>
Implementación a utilizar para determinar la igualdad de claves en el diccionario.
- valueComparer
- IEqualityComparer<TValue>
Implementación a utilizar para determinar la igualdad de valores en el diccionario.
Devoluciones
Diccionario ordenado inmutable vacío.