A thread in C# can have any of the following states:
Aborted – The thread is dead but not stopped. Running – The thread is executing. Stopped – The thread has stopped the execution. Suspended – The thread has been suspended. Unstarted – The thread is created but has not started execution yet. WaitSleepJoin – The thread calls sleep, calls wait on another object, and calls join on some other thread.
A thread in C# can have any of the following states:
Aborted – The thread is dead but not stopped.
need an explanation for this answer? contact us directly to get an explanation for this answerRunning – The thread is executing.
Stopped – The thread has stopped the execution.
Suspended – The thread has been suspended.
Unstarted – The thread is created but has not started execution yet.
WaitSleepJoin – The thread calls sleep, calls wait on another object, and calls join on some other thread.