Esempio n. 1
0
        public int CalculeScore(string bowls)
        {
            foreach (var roll in bowls)
            {
                Throw aThow = CreateThrow(roll);
                throws.Add(aThow);
            }

            return(throws.CalculeScore());
        }