Click or drag to resize

OrderedDictionary<TKey, TValue> Constructor (IEqualityComparer<TKey>)

Initializes a new instance of the OrderedDictionary<TKey,TValue> class using the specified comparer.

Namespace:  Ifs.Fnd.Core
Assembly:  Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntax
C#
public OrderedDictionary(
	IEqualityComparer<TKey> comparer
)

Parameters

comparer
Type: System.Collections.Generic.IEqualityComparer<TKey>
The IEqualityComparer<TKey> to use when comparing keys, or to use the default EqualityComparer<TKey> for the type of the key.
See Also