public bool UseWhiteSpaceValueSeparator { get; set; }
Public Property UseWhiteSpaceValueSeparator As Boolean
Get
Set
Dim instance As UsageWriter
Dim value As Boolean
value = instance.UseWhiteSpaceValueSeparator
instance.UseWhiteSpaceValueSeparator = value
public:
property bool UseWhiteSpaceValueSeparator {
bool get ();
void set (bool value);
}
If this property is , an argument would be formatted in the command line syntax as "-Name <Value>" (using default formatting), with a white space character separating the argument name and value description. If this property is , it would be formatted as "-Name:<Value>", using a colon as the separator (when using the default separators).
The command line syntax will only use a white space character as the value separator if both the CommandLineParserAllowWhiteSpaceValueSeparator property and the UseWhiteSpaceValueSeparator property are .