DictionaryArgumentInfo Constructor
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
public DictionaryArgumentInfo(
	bool allowDuplicateKeys,
	Type keyType,
	Type valueType,
	string keyValueSeparator
)
Public Sub New ( 
	allowDuplicateKeys As Boolean,
	keyType As Type,
	valueType As Type,
	keyValueSeparator As String
)
Dim allowDuplicateKeys As Boolean
Dim keyType As Type
Dim valueType As Type
Dim keyValueSeparator As String
Dim instance As New DictionaryArgumentInfo(allowDuplicateKeys, 
	keyType, valueType, keyValueSeparator)
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.