捕获到异常如何处理

捕获到异常如何处理

本文介绍了当我运行应用程序时,捕获到异常如何处理?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我使用Quick test Professional运行应用程序时,发生了一个异常,如System.ExecutionEngine异常.

如何处理?

将Windows窗体的对象初始化为form1

When I run an application using Quick test professional an exception is occurred as System.ExecutionEngine exception.

How to handle this?

Initialised an object of a Windows Form as form1

if (form1.ShowDialog(IWin32Window owner) == DialogResult.OK)

在此行发生异常.

如何处理?

Reply

at this line exception occurs.

How to handle this?

Reply

推荐答案

try
{
     ISchemaEditor ptsd = new ProductionTableSchemaDesigner();
     if (ptsd.ShowDialog(IWin32Window owner) == DialogResult.OK)
     {
     }
}
catch(Exception ex)
{
     //log your exception
}



这篇关于当我运行应用程序时,捕获到异常如何处理?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 11:36