Beispiel #1
0
 public OptionHelp(HelpArea option, string command, string[] text)
 {
     Area    = option;
     Command = command;
     Text    = text;
 }
Beispiel #2
0
 public OptionHelpAttribute(HelpArea area, string helpText)
 {
     Area     = area;
     HelpText = helpText;
 }
Beispiel #3
0
 public OptionHelp(HelpArea area, string text)
 {
     Area = area;
     Text = new string[] { text };
 }