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 |
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
- What is a Thread ? What is a Runnable object (object which implements java.land.Runnable) in Java ?
- What are the advantages of using Threads ?
- What is ISAPI ?
- What is a Servlet ?
- What is a class and package in Java ? Explain difference between them


