In multithread programming, which of the followings is not using Thread Pool?
BackgroundWorker class
Asynchronous delegate
Thread class
Task class
Tip
In many cases it is more efficient to get worker thread(s) from thread pool than creating a thread each time you need.
Thread class creates a thread on demand, whereas many other .NET classes such as BackgroundWorker, Task are utilizing thread pool.