gpt4 book ai didi

c# - 在 Visual Studio 中关闭表单后调试不停止

转载 作者:太空狗 更新时间:2023-10-29 20:17:50 25 4
gpt4 key购买 nike

当我关闭用 C# 编写的窗体时,Visual Studio 调试不会停止。关闭表单时如何停止调试过程。我在表单关闭事件中添加了 Application.Exit() 方法,但它不起作用。

谢谢。

最佳答案

here 试试这个

If (System.Windows.Forms.Application.MessageLoop)
{
// Use this since we are a WinForms app
System.Windows.Forms.Application.Exit()
}
Else
{
// Use this since we are a console app
System.Environment.Exit(1)
}

编辑:

如果有正在运行的 infinite 线程那么做

Thread myThread = new Thread(...);
myThread.IsBackground = true; //set your running thread to background
myThread.Start(...);

你可以看到如何?来自 here

关于c# - 在 Visual Studio 中关闭表单后调试不停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10137394/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com