experchinmay
New member
Threads are basically light weight processes responsible for multitasking within a single application.
The base class used for threading is System.Threading.
Threads are implemented when situations in which you want to perform more than one task at a time.
A Process is an instance of a running application.
A thread is the Execution stream of the Process.
A process can have multiple Threads
The base class used for threading is System.Threading.
Threads are implemented when situations in which you want to perform more than one task at a time.
A Process is an instance of a running application.
A thread is the Execution stream of the Process.
A process can have multiple Threads