如何在 C# 中生成随机整数?
该类Random用于创建随机数。(当然是伪随机的。)。
Random
例子:
Random rnd = new Random(); int month = rnd.Next(1, 13); // creates a number between 1 and 12 int dice = rnd.Next(1, 7); // creates a number between 1 and 6 int card = rnd.Next(52); // creates a number between 0 and 51
如果要创建多个随机数,则应保留该Random实例并重复使用它。如果您创建新实例的时间太接近,它们将产生与随机生成器从系统时钟播种的相同系列的随机数。