停止线程直到其他完成

时间:2010-03-19 11:42:59

标签: c# multithreading

如何停止线程直到其他线程运行。我如何检查线程是否正在运行并在c#

中停止线程

1 个答案:

答案 0 :(得分:7)

您的问题并不完全清楚,但您可能只是在Thread.Join之后:

// This will block until "otherThread" has completed
otherThread.Join();