Ошибка: system.argumentoutofrangeexception в C#
- Привет! Я пытаюсь сделать простую игру, в которой я стреляю в объект, на языке C#.
Когда я пытаюсь сделать их положение случайным, это ошибка, которую я получаю:
System.ArgumentOutOfRangeException: ''minValue' cannot be greater than 'maxvalue' Here's the piece of code where the problem is: private void timerGameLoop_Tick(object sender, EventArgs e) { UpdateVar(); this.Refresh(); } private void UpdateVar() { cVarandas.Update( rnd.Next(Resources.vhappy.Width, this.Width - Resources.vhappy.Width), rnd.Next(this.Height/2 , this.Height - Resources.vhappy.Height * 2) ); } Please help! What I have tried: I honestly don't know what to do here