当出现任何类型的异常时如何返回窗口格式
异常发生在另一个类中的函数中,我想要的只是在发生异常后跳出所有内容而不执行任何操作
答案 0 :(得分:0)
除了你的表格外,不要在任何地方捕捉到异常......
void FunctionInForm()
{
try
{
LogicLayer.DoStuff(); //This function and any function it calls should not handle exceptions
}
catch
{
//an exception occured, and you are back in your form
}
}