Difference between a Thread and a Process?- C# interview faqs

Difference between thread and process
Threads are similar to processes, but differ in the way that they share resources. Threads are distinguished from processes in that processes are typically independent, carry considerable state information and have separate address spaces. Threads typically share the memory belonging to their parent process.

No comments: