Home > Article > Backend Development > Thread pool in C#
The thread pool in C# is a collection of threads. It is used to perform tasks in the background. When a thread completes its task, it is sent to the queue where all waiting threads exist. This is done so that it can be reused.
Let's see how to create a thread pool.
First, use the following namespace -
using System.Threading;
Now, call the thread pool class using the thread pool object. Call the QueueUserWorkItem method -
ThreadPool.QueueUserWorkItem(new WaitCallback(Run));
Iterate over it in a loop and compare it with a normal Thread object.
The above is the detailed content of Thread pool in C#. For more information, please follow other related articles on the PHP Chinese website!