does an asynchronous thread die at the when method call ends

  • Thread starter Thread starter Dayne
  • Start date Start date
The method invoked through BeginInvoke runs on a thread from the ThreadPool.
When the method is done it is up to the ThreadPool to decide whether to shut
down the thread or keep it idle for a while (see the docs for
ThreadPool.SetMinThreads).

HTH, Jakob.
 
Back
Top