Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

OrderedMultiDictionary<(Of <(<'TKey, TValue>)>)> Constructor (Boolean)

Create a new OrderedMultiDictionary. The default ordering of keys and values are used. 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
)
Public Sub New ( _
	allowDuplicateValues As Boolean _
)
public:
OrderedMultiDictionary(
	bool^ allowDuplicateValues
)

Parameters

allowDuplicateValues
Type: Boolean
Can the same value be associated with a key multiple times?

Exceptions


ExceptionCondition
InvalidOperationExceptionTKey or TValue does not implement either IComparable<T> or IComparable.

Remarks


The default ordering of keys and values will be used, as defined by TKey and TValue's implementation of IComparable<T> (or IComparable if IComparable<T> is not implemented). If a different ordering should be used, other constructors allow a custom Comparer or IComparer to be passed to changed the ordering.