“Getawaiter und keine Erweiterungsmethode” Code-Antworten

Getawaiter und keine Erweiterungsmethode

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 und keine Erweiterungsmethode

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

Ähnliche Antworten wie “Getawaiter und keine Erweiterungsmethode”

Fragen ähnlich wie “Getawaiter und keine Erweiterungsmethode”

Weitere verwandte Antworten zu “Getawaiter und keine Erweiterungsmethode” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen