private void WhoWinner(int userChoice) { int compChoice = CompChoice(); int difCompUser = compChoice - userChoice; if ((difCompUser == -2) || (difCompUser == 1)) { lblInfoTable.Text = InfoTable(compChoice, userChoice)+" Победил "+lbluserName.Text+"!"; userCount++; } else if ((difCompUser == -1) || (difCompUser == 2)) { lblInfoTable.Text = InfoTable(compChoice, userChoice)+" Победил компьютер!"; compCount++; } else { lblInfoTable.Text = InfoTable(compChoice, userChoice); } lblScore.Text = compCount.ToString() + " : " + userCount.ToString(); }