BowlingKata.Game.IsSpare C# (CSharp) Method

IsSpare() private method

private IsSpare ( int currentFrame ) : bool
currentFrame int
return bool
        private bool IsSpare(int currentFrame)
        {
            return Rolls[currentFrame] + Rolls[currentFrame + 1] == 10;
        }