다음을 통해 공유


OrderedDictionary<TKey,TValue> 생성자

정의

오버로드

OrderedDictionary<TKey,TValue>()

비어 있는 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

에는 기본 초기 용량이 있으며 키 형식에 대한 기본 같음 비교자를 사용합니다.

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

복사한 요소가 포함된 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

지정된 IDictionary<TKey,TValue> 키 형식에 대한 기본 같음 비교자를 사용합니다.

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

복사된 요소가 포함된 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

지정된 IEnumerable<T> 키 형식에 대한 기본 같음 비교자를 사용합니다.

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

비어 있는 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

에는 기본 초기 용량이 있으며 지정된 IEqualityComparer<T>사용합니다.

OrderedDictionary<TKey,TValue>(Int32)

비어 있는 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

에는 지정된 초기 용량이 있으며 키 형식에 대한 기본 같음 비교자를 사용합니다.

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

복사한 요소가 포함된 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

지정된 IDictionary<TKey,TValue> 지정한 IEqualityComparer<T>사용합니다.

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

복사된 요소가 포함된 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

지정된 IEnumerable<T> 지정한 IEqualityComparer<T>사용합니다.

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

비어 있는 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

에는 지정된 초기 용량이 있으며 지정된 IEqualityComparer<T>사용합니다.

OrderedDictionary<TKey,TValue>()

비어 있는 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

에는 기본 초기 용량이 있으며 키 형식에 대한 기본 같음 비교자를 사용합니다.

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

적용 대상

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

복사한 요소가 포함된 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

지정된 IDictionary<TKey,TValue> 키 형식에 대한 기본 같음 비교자를 사용합니다.

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))

매개 변수

dictionary
IDictionary<TKey,TValue>

요소가 새 OrderedDictionary<TKey,TValue>복사되는 IDictionary<TKey,TValue>.

새 컬렉션에 있는 요소의 초기 순서는 제공된 사전에서 요소가 열거되는 순서입니다.

예외

dictionary null.

적용 대상

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

복사된 요소가 포함된 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

지정된 IEnumerable<T> 키 형식에 대한 기본 같음 비교자를 사용합니다.

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)))

매개 변수

collection
IEnumerable<KeyValuePair<TKey,TValue>>

요소가 새 OrderedDictionary<TKey,TValue>복사되는 IEnumerable<T>.

새 컬렉션에 있는 요소의 초기 순서는 제공된 컬렉션에서 요소가 열거되는 순서입니다.

예외

collection null.

적용 대상

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

비어 있는 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

에는 기본 초기 용량이 있으며 지정된 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))

매개 변수

comparer
IEqualityComparer<TKey>

키를 비교할 때 사용할 IEqualityComparer<T> 구현입니다.

또는 null 키 형식에 대한 기본 EqualityComparer<T> 사용합니다.

적용 대상

OrderedDictionary<TKey,TValue>(Int32)

비어 있는 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

에는 지정된 초기 용량이 있으며 키 형식에 대한 기본 같음 비교자를 사용합니다.

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)

매개 변수

capacity
Int32

OrderedDictionary<TKey,TValue> 포함할 수 있는 초기 요소 수입니다.

예외

용량이 0보다 작습니다.

적용 대상

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

복사한 요소가 포함된 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

지정된 IDictionary<TKey,TValue> 지정한 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))

매개 변수

dictionary
IDictionary<TKey,TValue>

요소가 새 OrderedDictionary<TKey,TValue>복사되는 IDictionary<TKey,TValue>.

새 컬렉션에 있는 요소의 초기 순서는 제공된 사전에서 요소가 열거되는 순서입니다.

comparer
IEqualityComparer<TKey>

키를 비교할 때 사용할 IEqualityComparer<T> 구현입니다.

또는 null 키 형식에 대한 기본 EqualityComparer<T> 사용합니다.

예외

dictionary null.

적용 대상

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

복사된 요소가 포함된 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

지정된 IEnumerable<T> 지정한 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))

매개 변수

collection
IEnumerable<KeyValuePair<TKey,TValue>>

요소가 새 OrderedDictionary<TKey,TValue>복사되는 IEnumerable<T>.

새 컬렉션에 있는 요소의 초기 순서는 제공된 컬렉션에서 요소가 열거되는 순서입니다.

comparer
IEqualityComparer<TKey>

키를 비교할 때 사용할 IEqualityComparer<T> 구현입니다.

또는 null 키 형식에 대한 기본 EqualityComparer<T> 사용합니다.

예외

collection null.

적용 대상

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

비어 있는 OrderedDictionary<TKey,TValue> 클래스의 새 인스턴스를 초기화합니다.

에는 지정된 초기 용량이 있으며 지정된 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))

매개 변수

capacity
Int32

OrderedDictionary<TKey,TValue> 포함할 수 있는 초기 요소 수입니다.

comparer
IEqualityComparer<TKey>

키를 비교할 때 사용할 IEqualityComparer<T> 구현입니다.

또는 null 키 형식에 대한 기본 EqualityComparer<T> 사용합니다.

예외

용량이 0보다 작습니다.

적용 대상