我在想是否可以使用 Attribute 进行异常处理,而不是在每个方法中都写“try...catch”。
例如,现在,我的每个方法都是这样的:
public void DoSomething()
{
try
{
// do something
}
catch (Exception ex)
{
// exception handling rules, always the same.
throw;
}
}
我想:
[HandleException]
public void DoSomething()
{
// do something
}
可能吗?