通过C#程序提示用户

时间:2015-10-12 19:51:18

标签: c#

请允许任何人告诉我我的代码中的问题是什么,我无法显示任何内容。

        static void Main() 
        {
            Console.WriteLine"Hello World!";                  
            Console.WriteLine"Press any key to exit.";
            Console.ReadKey();
        }

2 个答案:

答案 0 :(得分:1)

您没有正确调用WriteLine()方法。

将其更改为:

static void Main() 
   { 
        Console.WriteLine("Hello World!");

        Console.WriteLine("Press any key to exit.");
        Console.ReadKey();
    }

请记住,在调用方法时,不要忘记()。

答案 1 :(得分:1)

亲爱的,你写错了代码,这是正确的 而你忘了添加这个()

namespace HelloWorld
{
    class Hello 
    {
        static void Main() 
        {
            Console.WriteLine("Hello World!");

            // Keep the console window open in debug mode.
            Console.WriteLine("Press any key to exit.");
            Console.ReadKey();
        }
    }
}