How to terminate a suspended thread ?
If a thread is suspended, and the program is going to be disposed. How to terminate the suspended thread ?
When I try to use thread.Abort() to terminate it , it seems no effect ( I see it still 'isAlive' in the watch ) . If I first resume the thread then abort it , it seems a fool method , and it may not work.