在 C# 中的以下情况下,执行多线程或异步任务的最佳方法是什么?

简化的情况:



因为每个线程最后都需要返回一个值所以我想知道 Asynchronous Delegates 是否是要走的路。因为我在这方面经验不足,所以我提出了这些问题和/或建议。

谢谢!

最佳答案

你应该看看 QueueUserWorkItem 。这将允许您在单独的线程上进行每次调用并根据特定调用获取字符串值,例如

ManualResetEvent[] calls = new ManualResetEvent[5];
string[] results = new string[5];

calls[0] = new ManualResetEvent(false);
ThreadPool.QueueUserWorkItem(t =>
{
    results[0] = // do webservice call
    calls[0].Set();
});

calls[1] = new ManualResetEvent(false);
ThreadPool.QueueUserWorkItem(t =>
{
    results[1] = // do webservice call
    calls[1].Set();
});

....
// wait for all calls to complete
WaitHandle.WaitAll(calls);
// merge the results into a comma delimited string
string resultStr = String.Join(", ", results);

关于c# - 在 .NET 中使用返回值执行多线程或异步任务的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2317691/

10-10 08:41