Sergino

Resultados 1 preguntas formuladas por Sergino

Parallel.ForEach y async-await [duplicado]

0
respuestas
59
votos
56.2k
vistas

Tenía ese método: public async Task<MyResult> GetResult() { MyResult result = new MyResult(); foreach(var method in Methods) { string json = await Process(method); result.Prop1 = PopulateProp1(json); result.Prop2 = PopulateProp2(json); }