OrderedDictionaryTKey, TValue Constructor |
Name | Description | |
---|---|---|
![]() | OrderedDictionaryTKey, TValue |
Creates a new OrderedDictionary. The TKey must implemented IComparable<TKey>
or IComparable.
The CompareTo method of this interface will be used to compare keys in this dictionary.
|
![]() | OrderedDictionaryTKey, TValue(IComparerTKey) |
Creates a new OrderedDictionary. The Compare method of the passed comparison object
will be used to compare keys in this dictionary.
|
![]() | OrderedDictionaryTKey, TValue(IEnumerableKeyValuePairTKey, TValue) | Creates a new OrderedDictionary. The TKey must implemented IComparable<TKey> or IComparable. The CompareTo method of this interface will be used to compare keys in this dictionary. A collection and keys and values (typically another dictionary) is used to initialized the contents of the dictionary. |
![]() | OrderedDictionaryTKey, TValue(ComparisonTKey) |
Creates a new OrderedDictionary. The passed delegate will be used to compare keys in this dictionary.
|
![]() | OrderedDictionaryTKey, TValue(IEnumerableKeyValuePairTKey, TValue, IComparerTKey) | Creates a new OrderedDictionary. The Compare method of the passed comparison object will be used to compare keys in this dictionary. A collection and keys and values (typically another dictionary) is used to initialized the contents of the dictionary. |
![]() | OrderedDictionaryTKey, TValue(IEnumerableKeyValuePairTKey, TValue, ComparisonTKey) | Creates a new OrderedDictionary. The passed delegate will be used to compare keys in this dictionary. A collection and keys and values (typically another dictionary) is used to initialized the contents of the dictionary. |