preguntar acerca de parallel.foreach
3
réponses
Parallèle.ForEach et async-wait
j'ai eu une telle méthode:
public async Task<MyResult> GetResult()
{
MyResult result = new MyResult();
foreach(var method in Methods)
{
string json = await Process(method);
result.Prop1 = PopulateProp1(json);
…
demandé sur
1970-01-01 00:33:34