概述
程序运行结束是会退出的,打印完HelloWorld之后因为没有其他任务了,所以就退出了,又因为打印速度很快,所以我们会看到一个一闪而过的黑窗。
加入以下代码,程序运行完之后会等待用户输入任意键以退出。
Console.WriteLine("nPress any key to quit.");
Console.ReadKey();
HelloWorld:
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World !");
Console.WriteLine("nPress any key to quit.");
Console.ReadKey();
}
}
}
最后
以上就是漂亮短靴为你收集整理的C# 调试HelloWorld 闪退的全部内容,希望文章能够帮你解决C# 调试HelloWorld 闪退所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复