“Getwawaiter y sin método de extensión” Código de respuesta

Getwawaiter y sin método de extensión

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

Getwawaiter y sin método de extensión

//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

Respuestas similares a “Getwawaiter y sin método de extensión”

Preguntas similares a “Getwawaiter y sin método de extensión”

Más respuestas relacionadas con “Getwawaiter y sin método de extensión” en C#

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código