I thought it was possible to handle exceptions using an attribute rather than writing "try ... catch" in each individual method.
For example, now each of my methods looks like this:
public void DoSomething() { try {
I want to:
[HandleException] public void DoSomething() {
Is it possible?
source share