Вы должны сделать это через ManualResetEvent .
ManualResetEvent mre = new ManualResetEvent();
mre.WaitOne(); // This will wait
В другой теме, очевидно, вам понадобится ссылка на mre
mre.Set(); // Tells the other thread to go again
Полный пример, который напечатает некоторый текст, подождите, пока другой поток что-то сделает, а затем возобновит:
class Program
{
private static ManualResetEvent mre = new ManualResetEvent(false);
static void Main(string[] args)
{
Thread t = new Thread(new ThreadStart(SleepAndSet));
t.Start();
Console.WriteLine("Waiting");
mre.WaitOne();
Console.WriteLine("Resuming");
}
public static void SleepAndSet()
{
Thread.Sleep(2000);
mre.Set();
}
}