Udostępnij za pośrednictwem


OrderedDictionary<TKey,TValue> Konstruktory

Definicja

Przeciążenia

OrderedDictionary<TKey,TValue>()

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue>, która jest pusta,

ma domyślną pojemność początkową i używa domyślnego modułu porównywania równości dla typu klucza.

OrderedDictionary<TKey,TValue>(IDictionary<TKey,TValue>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue> zawierającej elementy skopiowane z

określony IDictionary<TKey,TValue> i używa domyślnego porównania równości dla typu klucza.

OrderedDictionary<TKey,TValue>(IEnumerable<KeyValuePair<TKey,TValue>>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue> zawierającej skopiowane elementy

z określonego IEnumerable<T> i używa domyślnego porównania równości dla typu klucza.

OrderedDictionary<TKey,TValue>(IEqualityComparer<TKey>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue>, która jest pusta,

ma domyślną pojemność początkową i używa określonego IEqualityComparer<T>.

OrderedDictionary<TKey,TValue>(Int32)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue>, która jest pusta,

ma określoną pojemność początkową i używa domyślnego modułu porównywania równości dla typu klucza.

OrderedDictionary<TKey,TValue>(IDictionary<TKey,TValue>, IEqualityComparer<TKey>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue> zawierającej elementy skopiowane z

określony IDictionary<TKey,TValue> i używa określonego IEqualityComparer<T>.

OrderedDictionary<TKey,TValue>(IEnumerable<KeyValuePair<TKey,TValue>>, IEqualityComparer<TKey>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue> zawierającej skopiowane elementy

z określonego IEnumerable<T> i używa określonego IEqualityComparer<T>.

OrderedDictionary<TKey,TValue>(Int32, IEqualityComparer<TKey>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue>, która jest pusta,

ma określoną początkową pojemność i używa określonego IEqualityComparer<T>.

OrderedDictionary<TKey,TValue>()

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue>, która jest pusta,

ma domyślną pojemność początkową i używa domyślnego modułu porównywania równości dla typu klucza.

public:
 OrderedDictionary();
public OrderedDictionary ();
Public Sub New ()

Dotyczy

OrderedDictionary<TKey,TValue>(IDictionary<TKey,TValue>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue> zawierającej elementy skopiowane z

określony IDictionary<TKey,TValue> i używa domyślnego porównania równości dla typu klucza.

public:
 OrderedDictionary(System::Collections::Generic::IDictionary<TKey, TValue> ^ dictionary);
public OrderedDictionary (System.Collections.Generic.IDictionary<TKey,TValue> dictionary);
new System.Collections.Generic.OrderedDictionary<'Key, 'Value> : System.Collections.Generic.IDictionary<'Key, 'Value> -> System.Collections.Generic.OrderedDictionary<'Key, 'Value>
Public Sub New (dictionary As IDictionary(Of TKey, TValue))

Parametry

dictionary
IDictionary<TKey,TValue>

IDictionary<TKey,TValue>, którego elementy są kopiowane do nowej OrderedDictionary<TKey,TValue>.

Początkowa kolejność elementów w nowej kolekcji to kolejność, wyliczeń elementów z podanego słownika.

Wyjątki

dictionary jest null.

Dotyczy

OrderedDictionary<TKey,TValue>(IEnumerable<KeyValuePair<TKey,TValue>>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue> zawierającej skopiowane elementy

z określonego IEnumerable<T> i używa domyślnego porównania równości dla typu klucza.

public:
 OrderedDictionary(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ collection);
public OrderedDictionary (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>> collection);
new System.Collections.Generic.OrderedDictionary<'Key, 'Value> : seq<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> System.Collections.Generic.OrderedDictionary<'Key, 'Value>
Public Sub New (collection As IEnumerable(Of KeyValuePair(Of TKey, TValue)))

Parametry

collection
IEnumerable<KeyValuePair<TKey,TValue>>

IEnumerable<T>, którego elementy są kopiowane do nowej OrderedDictionary<TKey,TValue>.

Początkowa kolejność elementów w nowej kolekcji to kolejność, wyliczona z podanej kolekcji.

Wyjątki

collection jest null.

Dotyczy

OrderedDictionary<TKey,TValue>(IEqualityComparer<TKey>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue>, która jest pusta,

ma domyślną pojemność początkową i używa określonego IEqualityComparer<T>.

public:
 OrderedDictionary(System::Collections::Generic::IEqualityComparer<TKey> ^ comparer);
public OrderedDictionary (System.Collections.Generic.IEqualityComparer<TKey>? comparer);
new System.Collections.Generic.OrderedDictionary<'Key, 'Value> : System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Generic.OrderedDictionary<'Key, 'Value>
Public Sub New (comparer As IEqualityComparer(Of TKey))

Parametry

comparer
IEqualityComparer<TKey>

Implementacja IEqualityComparer<T> do użycia podczas porównywania kluczy,

lub null użyć domyślnego EqualityComparer<T> dla typu klucza.

Dotyczy

OrderedDictionary<TKey,TValue>(Int32)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue>, która jest pusta,

ma określoną pojemność początkową i używa domyślnego modułu porównywania równości dla typu klucza.

public:
 OrderedDictionary(int capacity);
public OrderedDictionary (int capacity);
new System.Collections.Generic.OrderedDictionary<'Key, 'Value> : int -> System.Collections.Generic.OrderedDictionary<'Key, 'Value>
Public Sub New (capacity As Integer)

Parametry

capacity
Int32

Początkowa liczba elementów, które może zawierać OrderedDictionary<TKey,TValue>.

Wyjątki

pojemność jest mniejsza niż 0.

Dotyczy

OrderedDictionary<TKey,TValue>(IDictionary<TKey,TValue>, IEqualityComparer<TKey>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue> zawierającej elementy skopiowane z

określony IDictionary<TKey,TValue> i używa określonego IEqualityComparer<T>.

public:
 OrderedDictionary(System::Collections::Generic::IDictionary<TKey, TValue> ^ dictionary, System::Collections::Generic::IEqualityComparer<TKey> ^ comparer);
public OrderedDictionary (System.Collections.Generic.IDictionary<TKey,TValue> dictionary, System.Collections.Generic.IEqualityComparer<TKey>? comparer);
new System.Collections.Generic.OrderedDictionary<'Key, 'Value> : System.Collections.Generic.IDictionary<'Key, 'Value> * System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Generic.OrderedDictionary<'Key, 'Value>
Public Sub New (dictionary As IDictionary(Of TKey, TValue), comparer As IEqualityComparer(Of TKey))

Parametry

dictionary
IDictionary<TKey,TValue>

IDictionary<TKey,TValue>, którego elementy są kopiowane do nowej OrderedDictionary<TKey,TValue>.

Początkowa kolejność elementów w nowej kolekcji to kolejność, wyliczeń elementów z podanego słownika.

comparer
IEqualityComparer<TKey>

Implementacja IEqualityComparer<T> do użycia podczas porównywania kluczy,

lub null użyć domyślnego EqualityComparer<T> dla typu klucza.

Wyjątki

dictionary jest null.

Dotyczy

OrderedDictionary<TKey,TValue>(IEnumerable<KeyValuePair<TKey,TValue>>, IEqualityComparer<TKey>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue> zawierającej skopiowane elementy

z określonego IEnumerable<T> i używa określonego IEqualityComparer<T>.

public:
 OrderedDictionary(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ collection, System::Collections::Generic::IEqualityComparer<TKey> ^ comparer);
public OrderedDictionary (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>> collection, System.Collections.Generic.IEqualityComparer<TKey>? comparer);
new System.Collections.Generic.OrderedDictionary<'Key, 'Value> : seq<System.Collections.Generic.KeyValuePair<'Key, 'Value>> * System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Generic.OrderedDictionary<'Key, 'Value>
Public Sub New (collection As IEnumerable(Of KeyValuePair(Of TKey, TValue)), comparer As IEqualityComparer(Of TKey))

Parametry

collection
IEnumerable<KeyValuePair<TKey,TValue>>

IEnumerable<T>, którego elementy są kopiowane do nowej OrderedDictionary<TKey,TValue>.

Początkowa kolejność elementów w nowej kolekcji to kolejność, wyliczona z podanej kolekcji.

comparer
IEqualityComparer<TKey>

Implementacja IEqualityComparer<T> do użycia podczas porównywania kluczy,

lub null użyć domyślnego EqualityComparer<T> dla typu klucza.

Wyjątki

collection jest null.

Dotyczy

OrderedDictionary<TKey,TValue>(Int32, IEqualityComparer<TKey>)

Inicjuje nowe wystąpienie klasy OrderedDictionary<TKey,TValue>, która jest pusta,

ma określoną początkową pojemność i używa określonego IEqualityComparer<T>.

public:
 OrderedDictionary(int capacity, System::Collections::Generic::IEqualityComparer<TKey> ^ comparer);
public OrderedDictionary (int capacity, System.Collections.Generic.IEqualityComparer<TKey>? comparer);
new System.Collections.Generic.OrderedDictionary<'Key, 'Value> : int * System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Generic.OrderedDictionary<'Key, 'Value>
Public Sub New (capacity As Integer, comparer As IEqualityComparer(Of TKey))

Parametry

capacity
Int32

Początkowa liczba elementów, które może zawierać OrderedDictionary<TKey,TValue>.

comparer
IEqualityComparer<TKey>

Implementacja IEqualityComparer<T> do użycia podczas porównywania kluczy,

lub null użyć domyślnego EqualityComparer<T> dla typu klucza.

Wyjątki

pojemność jest mniejsza niż 0.

Dotyczy