|
OrderedDictionaryTKey, TValue Constructor (Int32, IEqualityComparerTKey)
|
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public OrderedDictionary(
int capacity,
IEqualityComparer<TKey> comparer
)
Public Sub New (
capacity As Integer,
comparer As IEqualityComparer(Of TKey)
)
Request Example
View SourceParameters
- capacity
- Type: SystemInt32
The initial number of elements that the OrderedDictionaryTKey, TValue can contain. - comparer
- Type: System.Collections.GenericIEqualityComparerTKey
The IEqualityComparer implementation to use when comparing keys, or null to use
the default EqualityComparer for the type of the key.
See Also