在专注于其他作业之后重新回归。
有人可以告诉我为什么我会收到错误。
static void Main(string[] args)
{
Console.WriteLine("% unique numbers");
Random rnd = new Random();
for (int count = 0; count <= 5; count++)
{
DiceR(); // ------ Error here -----
}
}
public void DiceR()
{
Random rnd = new Random();
Console.WriteLine(rnd.Next(1, 6));
}
}
答案 0 :(得分:2)
将其static
static public void DiceR()
{
Random rnd = new Random();
Console.WriteLine(rnd.Next(1, 6));
}