StringKeyedDictionaryTValue(Int32, Boolean, Boolean) Constructor

Initializes a new instance of the StringKeyedDictionaryTValue class using the specified capacity and an ordinal comparer that satisfies the specified parameters.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
C#
public StringKeyedDictionary(
	int capacity,
	bool ignoreCase,
	bool useRandomizedHash = false
)

Parameters

capacity  Int32
The initial capacity that the StringKeyedDictionaryTValue can contain.
ignoreCase  Boolean
to ignore case when comparing keys; otherwise, .
useRandomizedHash  Boolean  (Optional)
to use a comparer that generates randomized hash codes for any string length; otherwise, . This parameter is optional.
Default value: .

See Also