2

我想捕获从 SQL SERVER 引发的 INNER 异常,并在 WPF 的 MessegeBox 中显示该异常

提前致谢

4

1 回答 1

-1

这是您可以使用的一种方法:

        try
        {
            //Some commands that can raise an exception
        }
        catch (Exception e)
        {
            Exception inner = e.InnerException ?? e;
            while (inner.InnerException != null)
            {
                inner = inner.InnerException;
            }
            //inner exception will contain the innerest exception

        }
于 2012-04-26T06:24:27.730 回答