G Guest Dec 1, 2004 #2 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.
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.
J Joel Martinez Dec 1, 2004 #3 For all intents and purposes, yes ... as soon as that method ends its resources are ready for garbage collection. Joel Martinez http://www.onetug.org - Orlando .NET User Group http://www.codecube.net - blog
For all intents and purposes, yes ... as soon as that method ends its resources are ready for garbage collection. Joel Martinez http://www.onetug.org - Orlando .NET User Group http://www.codecube.net - blog