发生异常时返回表格
本文关键字:返回 表格 异常 | 更新日期: 2023-09-27 18:30:47
VS 2010 中使用 C# 和 Web 服务作为后端的 Win 表单应用程序
当发生任何类型的异常时,如何返回窗口窗体
异常发生在另一个类中的函数中,我想要的只是跳出所有内容而不执行任何内容,在发生异常后
只是不要在任何地方捕获异常,除了在你的表格中......
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
}
}