“getAWAITER et pas de méthode d'extension” Réponses codées

getAWAITER et pas de méthode d'extension

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 et pas de méthode d'extension

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

Réponses similaires à “getAWAITER et pas de méthode d'extension”

Questions similaires à “getAWAITER et pas de méthode d'extension”

Plus de réponses similaires à “getAWAITER et pas de méthode d'extension” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code