不能打电话给我的方法,我忘记了什么c#技巧:NOVICE

时间:2017-04-24 00:08:31

标签: c#

在专注于其他作业之后重新回归。

有人可以告诉我为什么我会收到错误。

   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));

    }
}

1 个答案:

答案 0 :(得分:2)

将其static

static public void DiceR()
{

    Random rnd = new Random();
    Console.WriteLine(rnd.Next(1, 6));

}