我如何知道我的C#控制檯應用程序何時會停止?有沒有發生過類似的事件?控制檯應用程序C的關閉事件#
謝謝!應用領域
class Program
{
static void Main(string[] args)
{
AppDomain.CurrentDomain.ProcessExit += new EventHandler(CurrentDomain_ProcessExit);
}
static void CurrentDomain_ProcessExit(object sender, EventArgs e)
{
Console.WriteLine("exit");
}
}
你想讓代碼退出應用? –
[這個問題是與你的相似] [1] [1]:http://stackoverflow.com/questions/1119841/net-console-application-exit-event – greijner