Системы.исключение argumentoutofrangeexception: индекс находился вне допустимого диапазона. Должно быть неотрицательным и меньше размера коллекции.
привет всем, когда я хочу получить некоторые данные из другой формы, выскочила ошибка “система.Исключение argumentoutofrangeexception”. Может ли кто-нибудь помочь мне решить эту проблему? спасибо
user = Form2.list(Form2.currentPlayer) 'получает текущий плеер из списка <<<< здесь произошла ошибка
Что я уже пробовал:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim user As Player ' local variable to hold the current player marker Dim b As Boolean ' boolean operator to check if the game has been won. b = False 'sets winning operator to false user = Form2.list(Form2.currentPlayer) 'gets the current player from list Dim moves As Integer 'the number of moves Dim moveTo As Integer ' the number cell number we need to move to moves = Form2.ThrowDice() 'Player moves the same amount as the ThrowDice result 'Selects dice image based on the result of ThrowDice