Documentation for the C# command-line option parsing library

UsageBuilder.BeginOption Method 

Method to start adding an option to the usage.

public void BeginOption(
   OptionDefinition opt
);

Parameters

opt
Option to start

Remarks

Leaves the "description" tag as the active tag. Allows paragraph and list content to be added to the description of an option beyond the normal description. Does not include the description body from the opt (must be added manually). Call EndOption to close this tag.

See Also

UsageBuilder Class | CommandLine.OptParse Namespace | AddOption