Multithreading is nothing but running more than one thread at a time to accomplish the tasks. While implementing multithreading, we need to consider threadpool as well as it is the collection of threads in the application. Multitthreading helps in saving the wastage of CPU usage and robust the apllication. each thread having it's own responsibility to complete the assigned task.
Hi,
It is not easy to define one sentence and I can't explain whole multithreading in QA section. If you want to really know about it in detail there are many articles written on C#Corner. Some links are given below. Go through it really you will understand easily.
https://www.c-sharpcorner.com/UploadFile/66c62d/multithreading-in-C-Sharp/
https://www.c-sharpcorner.com/article/introduction-to-multithreading-in-C-Sharp/
Multithreading is the ability of a program or an operating system process to manage its use by more than one user at a time and to even manage multiple requests by the same user without having to have multiple copies of the programming running in the computer.
It is a process in which multiple threads work simultaneously. It is a process to achieve multitasking. It saves time because multiple tasks are being executed at a time. To create multithreaded application in C#, we need to use System. Threding namespace. Each part of a program is called Thread.
Hi As you seen this image there are total N number of threads trying to do operation without waitng of complition other thread operation so that's called multi threading
Multithreading in C# is a process in which multiple threads work simultaneously. It is a process to achieve multitasking. It saves time because multiple tasks are being executed at a time. To create multithreaded application in C#, we need to use System. Threding namespace.
Vinod SalunkePosted Jul 24, 2020, 5:07 AM
Amit KumarPosted Jul 14, 2020, 11:16 PM
Harsh ShahPosted Jul 14, 2020, 10:39 PM
Atul WaradePosted Jul 14, 2020, 2:29 AM
Jenith ThakkarPosted Jul 13, 2020, 12:35 AM
As you seen this image there are total N number of threads trying to do operation without waitng of complition other thread operation so that's called multi threading
Ashutosh GuptaPosted Jul 12, 2020, 10:23 AM
Ajit KulageriPosted Jul 12, 2020, 2:02 AM
Rajanikant HawaldarPosted Jul 12, 2020, 1:53 AM
Santhakumar MunuswamyPosted Jul 11, 2020, 11:17 PM