-
Notifications
You must be signed in to change notification settings - Fork 0
HelpOptions
Lunar Doggo edited this page Apr 10, 2022
·
1 revision
A HelpOption is similar to a groupless StartOption. The user provides HelpOptions like ordinary StartOptions, but rather than using the options to provide the application with values, they are used to display the help page for your application.
public class HelpOption : IClonable<HelpOption>public HelpOption(string name, bool isShortName)| Signature | Description |
|---|---|
public bool IsShortName { get; } |
Gets whether the name of the HelpOption is a long or short option name |
public string Name { get; } |
Gets the name of the HelpOption
|
| Signature | Description |
|---|---|
| public HelpOption Clone()` | Creates an identical clone of the HelpOption
|