BowlingKata.BDD.With_a_game.RollMany C# (CSharp) Метод

RollMany() защищенный статический Метод

protected static RollMany ( int times, int pins ) : void
times int
pins int
Результат void
        protected static void RollMany(int times, int pins)
        {
            for (int i = 0; i < times; i++)
            {
                _game.Roll(pins);
            }
        }
With_a_game