Click or drag to resize

RecentDictionaryTKey, TValue Constructor

Overload List
  NameDescription
Public methodRecentDictionaryTKey, TValue
Initializes a new instance of the dictionary that is empty, performs LRU eviction, has the default initial capacity, and uses the default equality comparer for the key type.
Public methodRecentDictionaryTKey, TValue(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.
Public methodRecentDictionaryTKey, TValue(Int32)
Initializes a new instance of the dictionary that is empty, performs LRU eviction, has the specified initial capacity, and uses the default equality comparer for the key type.
Public methodRecentDictionaryTKey, TValue(RecentDictionaryEvictionMode)
Initializes a new instance of the dictionary that is empty, uses the specified eviction mode, has the default initial capacity, and uses the default equality comparer for the key type.
Public methodRecentDictionaryTKey, TValue(Int32, IEqualityComparerTKey)
Initializes a new instance of the dictionary with the specified initial capacity, performs LRU eviction, and uses the provided equality comparer for the key type.
Public methodRecentDictionaryTKey, TValue(Int32, RecentDictionaryEvictionMode, IEqualityComparerTKey)
Initializes a new instance of the dictionary with the specified initial capacity, the specified eviction, and uses the provide equality comparer for the key type.
Top
See Also