博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
阻止控制台程序退出
阅读量:5217 次
发布时间:2019-06-14

本文共 1042 字,大约阅读时间需要 3 分钟。

阻止控制台程序退出的一个方法,取自 surging的服务端。

class Program    {        //用来阻止程序退出        private static readonly ManualResetEvent _shutdownBlock = new ManualResetEvent(false);        static void Main(string[] args)        {            Console.WriteLine("Hello World!");        //启动其他线程            //Console.Read();            Console.CancelKeyPress += Console_CancelKeyPress;            AppDomain.CurrentDomain.ProcessExit += (sender, eventArgs) =>            {
          //等待退出信号触发 _shutdownBlock.WaitOne(); }; } //Ctrl+C 退出程序 private static void Console_CancelKeyPress(object sender, ConsoleCancelEventArgs e) { e.Cancel = true; _shutdownBlock.Set(); } }

 另:asp.net Core也是采用此方法

 参考:

https://github.com/dotnetcore/surging

surging/src/Surging.Core/Surging.Core.ServiceHosting/Internal/Implementation/ConsoleLifetime.cs

https://github.com/aspnet/AspNetCore

AspNetCore/src/Hosting/Hosting/src/Internal/WebHostLifetime.cs

转载于:https://www.cnblogs.com/imiyu/p/11102483.html

你可能感兴趣的文章
CoreData 从入门到精通(四)并发操作
查看>>
Swift - UIView的常用属性和常用方法总结
查看>>
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
Java编程思想总结笔记Chapter 5
查看>>
[LeetCode]662. Maximum Width of Binary Tree判断树的宽度
查看>>
WinForm聊天室
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>
Java 线程安全问题
查看>>
selenium学习中遇到的问题
查看>>
大数据学习之一——了解简单概念
查看>>
Linux升级内核教程(CentOS7)
查看>>
Lintcode: Partition Array
查看>>
分享适合个人站长的5类型网站
查看>>
类别的三个作用
查看>>
【SICP练习】85 练习2.57
查看>>
runC爆严重安全漏洞,主机可被攻击!使用容器的快打补丁
查看>>
Maximum Product Subarray
查看>>
solr相关配置翻译
查看>>
通过beego快速创建一个Restful风格API项目及API文档自动化(转)
查看>>