Find all code that is not protected by Try Catch

I am reviewing the code for a large SharePoint project.

One thing I have to check is the absence of unhandled exceptions.

We allow buble up exceptions, so in many cases they will not be caught up to the user interface level (web part).

Is there a way to get a list of all methods that have code outside the catch try block?

+3
source share

Source: https://habr.com/ru/post/1729887/


All Articles