Udostępnij za pośrednictwem


ImmutableSortedDictionary.Create Metoda

Definicja

Przeciążenia

Create<TKey,TValue>()

Tworzy pusty niezmienialny słownik posortowany.

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

Tworzy pusty niezmienialny słownik posortowany, który używa określonego modułu porównania kluczy.

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

Tworzy pusty niezmienialny słownik posortowany, który używa określonych modułów porównujących klucz i wartość.

Create<TKey,TValue>()

Źródło:
ImmutableSortedDictionary.cs
Źródło:
ImmutableSortedDictionary.cs
Źródło:
ImmutableSortedDictionary.cs

Tworzy pusty niezmienialny słownik posortowany.

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)

Parametry typu

TKey

Typ kluczy przechowywanych przez słownik.

TValue

Typ wartości przechowywanych przez słownik.

Zwraca

Pusty niezmienialny słownik posortowany.

Dotyczy

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

Źródło:
ImmutableSortedDictionary.cs
Źródło:
ImmutableSortedDictionary.cs
Źródło:
ImmutableSortedDictionary.cs

Tworzy pusty niezmienialny słownik posortowany, który używa określonego modułu porównania kluczy.

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)

Parametry typu

TKey

Typ kluczy przechowywanych przez słownik.

TValue

Typ wartości przechowywanych przez słownik.

Parametry

keyComparer
IComparer<TKey>

Implementacja służąca do określania równości kluczy w słowniku.

Zwraca

Pusty niezmienialny słownik posortowany.

Dotyczy

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

Źródło:
ImmutableSortedDictionary.cs
Źródło:
ImmutableSortedDictionary.cs
Źródło:
ImmutableSortedDictionary.cs

Tworzy pusty niezmienialny słownik posortowany, który używa określonych modułów porównujących klucz i wartość.

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)

Parametry typu

TKey

Typ kluczy przechowywanych przez słownik.

TValue

Typ wartości przechowywanych przez słownik.

Parametry

keyComparer
IComparer<TKey>

Implementacja służąca do określania równości kluczy w słowniku.

valueComparer
IEqualityComparer<TValue>

Implementacja używana do określania równości wartości w słowniku.

Zwraca

Pusty niezmienialny słownik posortowany.

Dotyczy