Click here to Skip to main content
15,885,655 members
Articles / Programming Languages / C#

Thread Pooling in C# – ThreadPool.QueueUserWorkItem

A thread pool is a collection of threads that can be used to perform several tasks in the background.  This leaves the primary thread free to perform other tasks asynchronously. Once a thread in the pool completes its task, it is returned to a queue of waiting threads, where it can be reused. This r
We're sorry, but the article you are trying to view was deleted at 2 Nov 2015.

Please go to the C# Table of Contents to view the list of available articles in this section.