コード例 #1
0
 public SimpleCommandLineClient( InjectionQueueCommunicator com, CommandHandler commandsfile )
 {
     _com = com;
     _current = null;
     _parser = new CommandLineParser();
     _handler = commandsfile;
 }
コード例 #2
0
ファイル: ParserTests.cs プロジェクト: Zazcallabah/PokeSave
 public void Setup()
 {
     _c = new CommandLineParser();
     _sf = new SaveFile( "p.sav" );
     _sf.A.Name = "RED2";
     _sf.B.Name = "RED3";
 }