我在C#中有一个控制台应用程序。如果出现问题,我致电Environment.Exit()
关闭我的申请。在应用程序结束之前,我需要断开与服务器的连接并关闭一些文件。
在Java中,我可以实现一个关闭钩子并通过Runtime.getRuntime().addShutdownHook()
注册它。如何在C#中实现相同的目标?
答案 0 :(得分:24)
您可以将事件处理程序附加到当前应用程序域的ProcessExit事件:
using System;
class Program
{
static void Main(string[] args)
{
AppDomain.CurrentDomain.ProcessExit += (s, e) => Console.WriteLine("Process exiting");
Environment.Exit(0);
}
}
答案 1 :(得分:10)
挂钩AppDomain事件:
private static void Main(string[] args)
{
var domain = AppDomain.CurrentDomain;
domain.UnhandledException += new UnhandledExceptionEventHandler(MyHandler);
domain.ProcessExit += new EventHandler(domain_ProcessExit);
domain.DomainUnload += new EventHandler(domain_DomainUnload);
}
static void MyHandler(object sender, UnhandledExceptionEventArgs args)
{
Exception e = (Exception)args.ExceptionObject;
Console.WriteLine("MyHandler caught: " + e.Message);
}
static void domain_ProcessExit(object sender, EventArgs e)
{
}
static void domain_DomainUnload(object sender, EventArgs e)
{
}
答案 2 :(得分:-2)
我建议在你自己的方法中包含对Environment.Exit()的调用,并在整个过程中使用它。像这样:
internal static void MyExit(int exitCode){
// disconnect from network streams
// ensure file connections are disposed
// etc.
Environment.Exit(exitCode);
}