本文介绍了如何在C#中禁止ComException原因的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何禁止C#中的ComException原因.谢谢.

How to forbid the ComException cause In C#.Thank you.

推荐答案

try
{
    //here comes your code which could raise a COMException
}
catch(COMException ex)
{
    //do something useful with that Exception,
    //e.g. show a message to the user, and then clean-up
}


这篇关于如何在C#中禁止ComException原因的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:21