I am trying to generat a random number.
Code:
{
}
void displayQuestion()
num1 = pickRandomNumbers();
num2 = pickRandomNumbers();
lblQuestion.Text = "How much is " + num1 + " times " + num2 + " ?";
When I run the program, the question displays the same number, BUT when I Debug and follow the code, it gives me different numbers?
I understand that random uses the Time to help pick. Do i need to force it to wait a second, or what?
HELP?