1.

What is Thread and explain states of a thread in C#?

Answer»

Hiring managers will be impressed if you have this information during C# interview questions. A Thread in C# is a set of GUIDELINES or instructions that are executed, and enable the program to do CONCURRENT processing. The concurrent processing of a program helps the developers HANDLE more than one operation at a given time.

The DIFFERENT states of thread are listed below-
  1. Unstarted
  2. Running
  3. WaitSleepJoin
  4. Suspended
  5. Aborted
  6. Stopped


Discussion

No Comment Found