What are the classes to support Multithreading in .Net ?

October 28, 2007 · Filed Under .Net Framework Interview Questions, Placement Questions 



Don't want to miss a single bit? Subscribe By Email for Daily Jobs

Enter your email address :

All the latest from JobsAdda on Jobsadda.com delivered to your mailbox everyday.

Threads are lightweight programs responsible for multitasking within a single application. The System.Threading namespace provides classes to manage multithreaded applications.

The simplest way to create a thread is to create a new instance of the Thread class. CLR provides ThreadStart delegate which points to a method which starts when the thread starts running.

Thread myThread = new Thread (new ThreadStart(myfunc));

There are API’s to join threads, suspend threads and killing threads as well.

Related Articles


Get Latest JobsAdda.com Jobs, news & updates  via Email