Multithreading in C sharp Arabic #84
Suggested Videos
❑ What is a process and a thread.
❑ Simple multithreading example.
Multithreading in C#
What is a Process: Process is what the operating system uses to facilitate the execution of a program by providing the resources required . Each process has a unique process id associated with it . You .can view the process within which a program is be being executed using windows task manager.
What is Thread: Thread is light weight process . A process has at least one thread which is commonly called as main thread which actually executes the application code . A single process can have multiped threads.
Please Note : All the threading related classes are present in System.Threading namespace.
Tags:
C sharp