Console.ReadLine(); 
Console.ReadKey();  //无法在Linux运行
private static readonly AutoResetEvent _closingEvent = new AutoResetEvent(false);
static void Main(string[] args)
{
    //业务逻辑

// 监听CTRL+C Console.CancelKeyPress += ((s, a) => { Console.WriteLine("程序已退出!"); _closingEvent.Set(); }); _closingEvent.WaitOne(); }

 

posted on 2022-04-26 18:16  金科许俊  阅读(120)  评论(0编辑  收藏  举报