发生异常时返回表格

时间:2013-09-09 07:15:28

标签: c# winforms exception return break

使用 C#网络服务作为后端< VS 2010 中的 Win表单应用 后端< /强>

当出现任何类型的异常时如何返回窗口格式

异常发生在另一个类中的函数中,我想要的只是在发生异常后跳出所有内容而不执行任何操作

1 个答案:

答案 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
    }  
}