Click or drag to resize

RecentDictionaryTKey, TValue Constructor (IEqualityComparerTKey)

Initializes a new instance of the dictionary that is empty, performs LRU eviction, 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 RecentDictionary(
	IEqualityComparer<TKey> comparer
)

Parameters

comparer
Type: System.Collections.GenericIEqualityComparerTKey
The IEqualityComparerT implementation to use when comparing keys, or null to use the default comparer for the type of the key.
See Also