public bool UseAbbreviatedSyntax { get; set; }
Public Property UseAbbreviatedSyntax As Boolean
Get
Set
Dim instance As UsageWriter
Dim value As Boolean
value = instance.UseAbbreviatedSyntax
instance.UseAbbreviatedSyntax = value
public:
property bool UseAbbreviatedSyntax {
bool get ();
void set (bool value);
}
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.