WriteUsageOptionsArraySuffix Property |
Gets or sets the suffix to append to the name of an array argument.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic string ArraySuffix { get; set; }
Public Property ArraySuffix As String
Get
Set
Dim instance As WriteUsageOptions
Dim value As String
value = instance.ArraySuffix
instance.ArraySuffix = value
public:
property String^ ArraySuffix {
String^ get ();
void set (String^ value);
}
Property Value
Type:
String
The suffix to append to the name of an array argument; the default value is "...".
Remarks
An argument that has an array type can be specified multiple times. This suffix is appended to the command line syntax for
the command to indicate that it can be repeated. For example, using the default options, an optional array argument would
be formatted as "[-sample <String>...]"
Setting this property to will revert it to its default value.
See Also