C
C# Learner
Is it *ever* safe to call Thread.Abort? In which cases it is so?
Richard Blewett said:Currently, in version 1.0 and 1.1 it is safe in two situations:
1) You may Abort the current thread (Thread.CurrentThread.Abort(); )
2) If you are taking down an AppDomain you can Abort all the threads
running within that AppDomain
Richard Blewett said:Currently, in version 1.0 and 1.1 it is safe in two situations:
1) You may Abort the current thread (Thread.CurrentThread.Abort(); )
2) If you are taking down an AppDomain you can Abort all the threads
running within that AppDomain
Thats it.
Currently, in version 1.0 and 1.1 it is safe in two situations:
1) You may Abort the current thread (Thread.CurrentThread.Abort(); )
2) If you are taking down an AppDomain you can Abort all the threads running within that AppDomain