mscorlib(4.0.0.0) API with additions
ThreadState.cs
1 namespace System.Diagnostics
2 {
4  public enum ThreadState
5  {
7  Initialized,
9  Ready,
11  Running,
13  Standby,
15  Terminated,
17  Wait,
19  Transition,
21  Unknown
22  }
23 }
A state that indicates the thread is not ready to use the processor because it is waiting for a perip...
A state that indicates the thread has finished executing and has exited.
A state that indicates the thread is about to use a processor. Only one thread can be in this state a...
A state that indicates the thread is waiting for a resource, other than the processor,...
ThreadState
Specifies the current execution state of the thread.
Definition: ThreadState.cs:4
A state that indicates the thread is waiting to use a processor because no processor is free....