I want to generate 25 unique random numbers and list them in a console. The numbers should be atleast 10 characters long. Any easy way to do that?
Random rnd = new Random(table); for(int i = 0; i < 25; ++i) { Console.WriteLine("{0}", rnd.Next(50, 50+i) }