Click or drag to resize

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
Syntax
public string ArraySuffix { get; set; }

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