SyntaxFix
Write A Post
Hire A Developer
Questions
Use this:
static int RandomNumber(int min, int max) { Random random = new Random(); return random.Next(min, max); }
This is example for you to modify and use in your application.