应用程序关闭 C# Windows
我的 C# 应用程序执行后仍在 RAM 中 Application.Current.Shutdown();
(数据库连接之前已关闭)
(Application.Current.Exit += new ExitEventHandler(Current_Exit); 也使用)
还有其他语句可以使用吗?
该问题发生在不同的 Windows Xp 系统和 Server 2008 上。
亲切的问候, 杰夫
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您仍有正在运行的线程,就会发生这种情况。
This happens if you still have running threads.
如果您生成了一些线程,它们可能仍在运行。 确保它们在关闭应用程序之前已完成,或者确保将线程的“IsBackground”属性设置为“true”,以便它们随应用程序一起终止。
If you spawned some threads, they might still be running. Either make sure they're finished before closing the application, or make sure you set the "IsBackground" property of the threads to "true" so they die with the application.