标签: c# multithreading
如何停止线程直到其他线程运行。我如何检查线程是否正在运行并在c#
答案 0 :(得分:7)
您的问题并不完全清楚,但您可能只是在Thread.Join之后:
Thread.Join
// This will block until "otherThread" has completed otherThread.Join();