We all know that in c# if any exception is thrown, it terminates or kill the process immediately,
which is not the case for ThreadAbortException.Why there is a special behaviour for this exception?
We all know that in c# if any exception is thrown, it terminates or
Share
Because the main thread can choose to cancel the exception and/or wait for the thread to finish and then continue processing.
See ThreadAbortException Class.