public void NextRound() { var nextRoundNumber = CurrentRound.RoundNumber + 1; if (nextRoundNumber > MaxRound) { End = true; } else { CurrentRound.StartRound(nextRoundNumber); } }