List of exceptions that CAN'T be caught in .NET

前端 未结 8 1341
忘掉有多难
忘掉有多难 2020-11-30 09:16

What is the list of exceptions that CAN\'T be caught in .NET? Or where can I find such a list?

8条回答
  •  遥遥无期
    2020-11-30 09:27

    Well there are some exceptions that will always be re-thrown even if you catch them. StackOverflowException is the only ones i can think of atm though. possibly ThreadAbortedException.

提交回复
热议问题