Tuesday, September 6, 2011

Display Random Numbers

Display random number
static private int RandomNumber(int min, int max)
{
Random random = new Random();

return random.Next(min, max);

No comments:

Post a Comment

How to upload app to macOS

1. Open Terminal Press Cmd (⌘) + Space , type Terminal , and hit Enter . 2. Navigate to Your Build Output Directory Your .app file is likel...