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.
Namespace: KGySoft.CollectionsAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public StringKeyedDictionary(
int capacity,
bool ignoreCase,
bool useRandomizedHash = false
)
Public Sub New (
capacity As Integer,
ignoreCase As Boolean,
Optional useRandomizedHash As Boolean = false
)
public:
StringKeyedDictionary(
int capacity,
bool ignoreCase,
bool useRandomizedHash = false
)
new :
capacity : int *
ignoreCase : bool *
?useRandomizedHash : bool
(* Defaults:
let _useRandomizedHash = defaultArg useRandomizedHash false
*)
-> StringKeyedDictionary
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: .