Esempio n. 1
0
 // Tries to parse the commands inside the string and returns a list containing all the keys.
 public CommandLineKeyList GetCommands()
 {
     if (_list == null) {
         _list = ParserImpl.TryParseList (_commandLine);
     }
     return _list;
 }
Esempio n. 2
0
 public CommandLineBuilder()
 {
     _klist = new CommandLineKeyList ();
 }