I need to terminate a frozen thread, I set IsBackground as true but it stays alive. Thread's properties:
ThreadState = AbortRequested
IsBackground = true
When I examine the frozen spot I find the line below:
resultDetect = Detect(input, ref output);
The spot is a 3rd party code (Method Detect). The thread only updates resultDetect as you see. I need to abort that thread and re-start a new one to continue. Otherwise, the application waits and does nothing -fresh resultDetect needed-
How can I kill the thread that doesn't die?