在foreach之外运行代码之前,如何确保foreach中的所有线程都已完成

时间:2014-06-09 11:13:55

标签: c# multithreading .net-4.5

这是我的代码:

foreach (string s in ls)
{
    Thread thread = new Thread(delegate()
    {
        thread_inside(s, k);
    });
    thread.Start();
}

timer_between_freuqently_1.Enabled = true;

在运行foreach之外的代码之前,我怎么能确定所有thread_inside()方法都已完成?

0 个答案:

没有答案