Ejemplo n.º 1
0
 static bool ProcessLine(string line)
 {
     var commandParser = new CommandParser(new Configuration());
     return commandParser.Parse(line);
 }
Ejemplo n.º 2
0
 private static bool ProcessLine(string line)
 {
     var commandParser = new CommandParser();
     return commandParser.Parse(line);
 }
Ejemplo n.º 3
0
        static bool ProcessLine(string line)
        {
            var commandParser = new CommandParser(new Configuration());

            return(commandParser.Parse(line));
        }