DictionaryArgumentInfo Constructor

Initializes a new instance of the DictionaryArgumentInfo class.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public DictionaryArgumentInfo(
	bool allowDuplicateKeys,
	Type keyType,
	Type valueType,
	string keyValueSeparator
)

Parameters

allowDuplicateKeys  Boolean
if duplicate dictionary keys are allowed; otherwise, .
keyType  Type
The type of the dictionary's keys.
valueType  Type
The type of the dictionary's values.
keyValueSeparator  String
The separator between the keys and values.

Exceptions

ArgumentNullExceptionkeyType or valueType or keyValueSeparator is .

See Also