6

我有以下代码:

[Serializable]
    class ExceptionAspectHandler:OnExceptionAspect
    {
        public override void OnException(MethodExecutionArgs args)
        {
            Console.WriteLine("{0}", args.Exception);
            args.FlowBehavior = FlowBehavior.Continue;
        }
    }

    [OnExceptionAspect]
    public static void divide()
            {
                int n = Convert.ToInt32(Console.ReadLine());
                var a = 100 / n; //the exception happens here
                Console.WriteLine("it should get here");
            }

使用 FlowBehavior.Continue 结束 divide() 并返回 main() 方法。

4

2 回答 2

5

请记住,OnException 方面将您的代码包装在 try/catch 中,因此代码将从 catch 继续(而不是重新抛出),并且其行为将默认返回。您是否希望它从引发异常的地方继续?如果是这样,您需要自己将该行显式包装在 try/catch 中。

请阅读http://www.sharpcrafters.com/blog/post/Day-6-Your-code-after-PostSharp.aspx了解更多详情。

于 2012-05-11T14:33:38.463 回答
0

在 divide() 方法中使用的属性应该是 ExceptionAspectHandler(您已经创建),而不是 OnExceptionAspect。

于 2013-02-15T17:20:58.393 回答