From: Tony Johansson on
Hi!

There are two items in the ThreadState Enumeration that is named Aborted and
Stopped.
I assume that these two are the same or is it perhaps some difference
between them?

//Tony


From: Arne Vajhøj on
On 09-05-2010 17:32, Tony Johansson wrote:
> There are two items in the ThreadState Enumeration that is named Aborted and
> Stopped.
> I assume that these two are the same or is it perhaps some difference
> between them?

The docs says:

Stopped - The thread has stopped.

Aborted - The thread state includes AbortRequested and the thread is now
dead, but its state has not yet changed to Stopped.

Which seems to explain it.

Arne