Click or drag to resize
OrderedDictionaryTKey, TValue Constructor
Overload List
  NameDescription
Public methodOrderedDictionaryTKey, 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.
Public methodOrderedDictionaryTKey, TValue(IComparerTKey)
Creates a new OrderedDictionary. The Compare method of the passed comparison object will be used to compare keys in this dictionary.
Public methodOrderedDictionaryTKey, 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.

Public methodOrderedDictionaryTKey, TValue(ComparisonTKey)
Creates a new OrderedDictionary. The passed delegate will be used to compare keys in this dictionary.
Public methodOrderedDictionaryTKey, 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.

Public methodOrderedDictionaryTKey, 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.

Top
See Also