public int ThrowDice() { try { int DiceThrow = DiceInt.Next(1, 7); return(DiceThrow); } catch (Exception) { throw; } }