Is there any addon by which I can disable all catch blocks temporarily. I’m maintaining an application and I need to find out where exactly it is throwing exception. Someone has done error handling is done is all layers to make my job tough 🙁
Share
I don’t know a way to disable catch blocks but what you are trying to achieve can be done easily a VS option in exceptions dialog:
This way, VS will break immediately when an exception is being thrown before running any catch block.