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