Q:

Explain different states of a thread in C#?

0

Explain different states of a thread in C#?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Interview Questions and Answers,You Need To Know

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
What are delegates?... >>
<< Why do we use Async and Await in C#?...