ParseOptionsNameValueSeparator Property
Gets or sets the character used to separate the name and the value of an argument.
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
public char? NameValueSeparator { get; set; }
Public Property NameValueSeparator As Char?
Get
Set
Dim instance As ParseOptions
Dim value As Char?
value = instance.NameValueSeparator
instance.NameValueSeparator = value
public:
property Nullable<wchar_t> NameValueSeparator {
Nullable<wchar_t> get ();
void set (Nullable<wchar_t> value);
}
Property Value
NullableChar
The character used to separate the name and the value of an argument, or
to use the value from the
ParseOptionsAttribute attribute, or if that
is not present, the
DefaultNameValueSeparator
constant, a colon (:). The default value is
.
This character is used to separate the name and the value if both are provided as
a single argument to the application, e.g. -sample:value if the default value is used.
The character chosen here cannot be used in the name of any parameter. Therefore,
it's usually best to choose a non-alphanumeric value such as the colon or equals sign.
The character can appear in argument values (e.g. -sample:foo:bar is fine, in which
case the value is "foo:bar").
Do not pick a white-space character as the separator. Doing this only works if the
whitespace character is part of the argument, which usually means it needs to be
quoted or escaped when invoking your application. Instead, use the
AllowWhiteSpaceValueSeparator property to control whether white space
is allowed as a separator.
If not , this property overrides the value of the
NameValueSeparator property.