应用程序关闭 C# Windows

发布于 2024-07-28 01:17:23 字数 260 浏览 2 评论 0 原文

我的 C# 应用程序执行后仍在 RAM 中 Application.Current.Shutdown();

(数据库连接之前已关闭)

(Application.Current.Exit += new ExitEventHandler(Current_Exit); 也使用)

还有其他语句可以使用吗?

该问题发生在不同的 Windows Xp 系统和 Server 2008 上。

亲切的问候, 杰夫

my C# app is still in RAM after executing
Application.Current.Shutdown();

(db connection is closed before)

(Application.Current.Exit += new ExitEventHandler(Current_Exit);
is also used )

is there another statement to use ?

the problem occurs on different Windows Xp systems and on Server 2008.

kind regards,
jeff

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野味少女 2024-08-04 01:17:32

如果您仍有正在运行的线程,就会发生这种情况。

This happens if you still have running threads.

过去的过去 2024-08-04 01:17:29

如果您生成了一些线程,它们可能仍在运行。 确保它们在关闭应用程序之前已完成,或者确保将线程的“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文