控制台应用程序的“退出”

时间:2011-01-10 12:30:44

标签: c# .net

我正在寻找一种在手动关闭控制台应用程序时触发一段代码的方法(用户关闭窗口)。一直在尝试:

AppDomain.CurrentDomain.ProcessExit +=
    new EventHandler(CurrentDomain_ProcessExit);

但如果手动关闭,上述操作无效。

是否有任何方法可以使用.Net调用或者我是否需要导入内核dll并按此方式执行此操作?

2 个答案:

答案 0 :(得分:102)

此代码用于捕获关闭控制台窗口的用户:

using System;
using System.Runtime.InteropServices;

class Program {
    static void Main(string[] args) {
        handler = new ConsoleEventDelegate(ConsoleEventCallback);
        SetConsoleCtrlHandler(handler, true);
        Console.ReadLine();
    }

    static bool ConsoleEventCallback(int eventType) {
        if (eventType == 2) {
            Console.WriteLine("Console window closing, death imminent");
        }
        return false;
    }
    static ConsoleEventDelegate handler;   // Keeps it from getting garbage collected
    // Pinvoke
    private delegate bool ConsoleEventDelegate(int eventType);
    [DllImport("kernel32.dll", SetLastError = true)]
    private static extern bool SetConsoleCtrlHandler(ConsoleEventDelegate callback, bool add);

}

谨防这些限制。您快速响应此通知,您有5秒钟完成任务。花费更长时间,Windows会毫不客气地终止你的代码。并且您的方法在工作线程上异步调用,程序的状态完全不可预测,因此可能需要锁定。确保中止不会造成麻烦。例如,将状态保存到文件中时,请确保先保存到临时文件并使用File.Replace()。

答案 1 :(得分:27)

您需要挂钩到控制台退出事件而不是您的过程。

http://geekswithblogs.net/mrnat/archive/2004/09/23/11594.aspx

Capture console exit C#