我的主要方法如下:
static void Main()
{
throw new Exception("dsfs");
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ImageSettings());
}
但是当我尝试在这样的表单加载方法中抛出异常时:
private void ImageSettings_Load(object sender, EventArgs e)
{
throw new Exception("sdfds");
...
}
视觉工作室不会停止并提示,它会直接退出程序。
那么如何设置visual studio并让它在表单生命周期方法中停止未处理的异常呢? (并处理异常,我不想停下来打破)
提前感谢。