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);
}
}
}
这是我的代码,问题是控制台弹出并死亡。
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();
通过对
试试看
Console.Readline()
它应该向您显示控制台,您可以通过单击例如enter退出