UsageWriterUseAbbreviatedSyntax Property

Gets or sets a value that indicates whether to list only positional arguments in the usage syntax.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public bool UseAbbreviatedSyntax { get; set; }

Property Value

Boolean
to abbreviate the syntax; otherwise, . The default value is .

Remarks

Abbreviated usage syntax only lists the positional arguments explicitly. After that, if there are any more arguments, it will just print the value from the WriteAbbreviatedRemainingArguments method. The user will have to refer to the description list to see the remaining possible arguments.

Use this if your application has a very large number of arguments.

See Also