コード例 #1
0
 protected void runFubu(string commands)
 {
     var runner = new CommandRunner();
     commands.ReadLines(x =>
     {
         if (x.Trim().IsNotEmpty())
         {
             runner.RunFubu(x);
         }
     });
 }