当前进程终止时运行代码?
有没有办法在当前进程终止时运行一些代码?
我想在进程终止时记录一些内容(通过外部方式 - 例如杀死它 - 或在应用程序本身中退出)。
我们正在讨论用 C# 编写的控制台应用程序。
谢谢!
Is there a way to run a bit of code when the current process is getting terminated?
I want to log some stuff when a process terminates (either through external means - eg killing it - or quitting in the application itself).
We're talking about a Console application written in c#.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这里:atexit,c#中的退出委托
Have a look here: atexit, exit delegate in c#
我不确定,但类似的内容将有助于
查看: Process.Exited 事件
I am not sure, but something similar would help
have a look at: Process.Exited Event