What exceptions block catch locks in .net

So, from http://msdn.microsoft.com/en-us/library/ms173161.aspx

When an exception is thrown, it spreads the call stack until a catch statement for the exception is found.

Thus, the implication is that all types of exceptions can either be caught by catch(ExceptionType) , or by a common catch .

However, this is clearly not true. For example, AccessViolationException bypasses standard exception handling

How to handle AccessViolationException

So, what other exceptions also bypass standard exception handling?

+6
source share
1 answer

I would say that a StackOverflowException is most likely unhandled, I don't know others.

+1
source

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


All Articles