Click or drag to resize

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

Initializes a new instance of the dictionary that is empty, has the default initial capacity, and uses the specified equality comparer for the key type.

Namespace:  Scaleout.Collections
Assembly:  Scaleout.Collections (in Scaleout.Collections.dll) Version: 1.0.3.0 (1.0.3.0)
Syntax
C#
public RouletteDictionary(
	IEqualityComparer<TKey> comparer
)

Parameters

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