Hi all
do i need explicitly close a thread when it finish its job or do the .NET framework take care of that for me?
Printable View
Hi all
do i need explicitly close a thread when it finish its job or do the .NET framework take care of that for me?
Once the thread's entry method completes the thread terminates. You don't have to do anything.
Thanks jmcilhinney