CommandLineArgumentKeyValueSeparator Property |
Gets the separator for key/value pairs if this argument is a dictionary argument.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.4.0
Syntaxpublic string? KeyValueSeparator { get; }
Public ReadOnly Property KeyValueSeparator As String
Get
Dim instance As CommandLineArgument
Dim value As String
value = instance.KeyValueSeparator
public:
property String^ KeyValueSeparator {
String^ get ();
}
Property Value
Type:
String
The custom value specified using the
KeyValueSeparatorAttribute attribute, or
DefaultSeparator
if no attribute was present, or
if this is not a dictionary argument.
Remarks
This property is only meaningful if the IsDictionary property is .
See Also