I spawned some threads using ThreadStart and a few of them died for various reasons (the work is complete, or there was an error)
Since I still have a reference to this thread, what should I do do complete the termination of this o开发者_高级运维bject? What can I do to restart it?
You don't need to do anything to complete the termination.
You can't restart a thread which has finished - but you could create a new thread to do the same task, assuming you know what that task was.
精彩评论