OrderedMultiDictionary<(Of <(<'TKey, TValue>)>)> Constructor (Boolean, Comparison<(Of <(<'TKey>)>)>)
Create a new OrderedMultiDictionary. If duplicate values
are allowed, multiple copies of the same value can be associated with the same key. For example, the key "foo"
could have "a", "a", and "b" associated with it. If duplicate values are not allowed, only one copies of a given value can
be associated with the same key, although different keys can have the same value. For example, the key "foo" could
have "a" and "b" associated with it, which key "bar" has values "b" and "c" associated with it.
Namespace:
Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
public OrderedMultiDictionary( bool allowDuplicateValues, Comparison<TKey> keyComparison )
Public Sub New ( _ allowDuplicateValues As Boolean, _ keyComparison As Comparison(Of TKey) _ )
public: OrderedMultiDictionary( bool^ allowDuplicateValues, Comparison<TKey>^ keyComparison )
Parameters
- allowDuplicateValues
- Type: Boolean
Can the same value be associated with a key multiple times?
- keyComparison
- Type: Comparison<(Of <(<'TKey>)>)>
A delegate to a method that will be used to compare keys.
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | TValue does not implement either IComparable<TValue> or IComparable. |