示例#1
0
 /// <summary>
 /// Check command line semantics.
 /// </summary>
 public static void Check(string commandLine, CmdLineRules rules)
 {
     Check(CommandLineParser.ParseCommandLine(commandLine), rules);
 }
示例#2
0
 /// <summary>
 /// Parse command line.
 /// </summary>
 public static CmdLineNode ParseCommandLine(string source)
 {
     return(CommandLineParser.ParseCommandLine(source));
 }