I need a way to generate a number within a certain range pre-set by me or a function. Any assistance?
Printable View
I need a way to generate a number within a certain range pre-set by me or a function. Any assistance?
SimplesCode:var random = new Random();
int blah = random.Next(50, 100);
*squeek*
Wow, that is simple. Thanks :D
I didn't know there was a function like Next