提问者:小点点

程序'11476]consoleApp22.exe'已退出,代码为0(0x0)


using System;

// Namespace
namespace ConsoleApp22
{
    // Main Class
    class Program
    {
        // Entry Point Method
        static void Main(string[] args)
        {
            string name = "Florent Shomora";


            // start here 
            Console.Write("Hello World"+ name);
        }
    }
}

这是我的代码,问题是控制台弹出并死亡。


共3个答案

匿名用户

null

    static void Main(string[] args)
    {
        string name = "Florent Shomora";


        // start here 
        Console.Write("Hello World"+ name);
        Console.Readline();
    }

匿名用户

null

null

您可以通过添加另一个需要更多时间的操作来暂停程序,例如,需要用户输入:

string name = "Florent Shomora";

// start here 
Console.Write("Hello World"+ name);

Console.ReadLine();

通过对的额外调用,应用程序现在将保持打开状态,并等待您在关闭之前按下“Return”。

匿名用户

试试看

Console.Readline()

它应该向您显示控制台,您可以通过单击例如enter退出