stop thread till other complete
How to stop thread till other thread is running. How can i check thread is runni开发者_如何转开发ng and stop thread in c#
It's not entirely clear from your question, but you may just be after Thread.Join
:
// This will block until "otherThread" has completed
otherThread.Join();
精彩评论