“Getawaiter e nenhum método de extensão” Respostas de código

Getawaiter e nenhum método de extensão

private async Task<List<MyObject>> GetBigListAsync()
{
    var myTask = Task.Run( () => GetBigList());
    // your thread is free to do other useful stuff right nw
    DoOtherUsefulStuff();
    // after a while you need the result, await for myTask:
    List<MyObject> result = await myTask;

    // you can now use the results of loading:
    ProcessResult(result);
    return result;
}
Xenophobic Xenomorph

Getawaiter e nenhum método de extensão

//How to Apply async & await in C#
private async Task<List<MyObject>> GetBigListAsync()
{
    var myTask = Task.Run( () => GetBigList());
    // your thread is free to do other useful stuff right nw
    DoOtherUsefulStuff();
    // after a while you need the result, await for myTask:
    List<MyObject> result = await myTask;

    // you can now use the results of loading:
    ProcessResult(result);
    return result;
}
Xenophobic Xenomorph

Respostas semelhantes a “Getawaiter e nenhum método de extensão”

Perguntas semelhantes a “Getawaiter e nenhum método de extensão”

Mais respostas relacionadas para “Getawaiter e nenhum método de extensão” em C#

Procure respostas de código populares por idioma

Procurar outros idiomas de código