Ejemplo n.º 1
0
 protected static void runBottles(string commands)
 {
     commands.ReadLines(x =>
     {
         if (x.Trim().IsNotEmpty())
         {
             _runner.RunBottles(x);
         }
     });
 }
Ejemplo n.º 2
0
        protected void runBottles(string commands)
        {
            var runner = new CommandRunner();

            commands.ReadLines(x =>
            {
                if (x.Trim().IsNotEmpty())
                {
                    runner.RunBottles(x);
                }
            });
        }
Ejemplo n.º 3
0
 protected void runBottles(string commands)
 {
     var runner = new CommandRunner();
     commands.ReadLines(x =>
     {
         if (x.Trim().IsNotEmpty())
         {
             runner.RunBottles(x);
         }
     });
 }