1

我有一个功能。我想通过不同的线程多次调用这个函数。我怎样才能做到这一点 ?。我的功能如下

public void DownloadImage(List<String> imageUrl)
    {
        imageCount = imageUrl.Count;

        foreach (string url in imageUrl)
        {
            StartDownload(url);
        }
    }

我有 10 张图片要下载。我正在使用 webclient 下载图像。所以我想用 10 个线程调用这个函数。我怎样才能做到这一点 ?

我尝试了下面的代码。但它显示编译错误

ParameterizedThreadStart starter;

        for (int i = 0; i < 10; i++)
        {
            _imageDownloader = new ImageDownloader(); //this is class where I defined the function above ie DownloadImage
            _imageDownloader.OnCompleted+=new Completed(_imageDownloader_OnCompleted);
            starter = new ParameterizedThreadStart(_imageDownloader.DownloadImage); // in this line it showing a compile error "No overload for 'DownloadImage' matches delegate 'System.Threading.ParameterizedThreadStart'"
            Thread imageThread = new Thread(starter);
            imageThread.Start();
        }

请帮忙。

4

1 回答 1

2

您可以使用任务并行库:

public void DownloadImage(List<String> imageUrl)
{
    Parallel.ForEach(imageUrl, url => StartDownload(url));
}
于 2012-09-27T13:09:22.550 回答