“getawaaiter dan tidak ada metode ekstensi” Kode Jawaban

getawaaiter dan tidak ada metode ekstensi

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

getawaaiter dan tidak ada metode ekstensi

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

Jawaban yang mirip dengan “getawaaiter dan tidak ada metode ekstensi”

Pertanyaan yang mirip dengan “getawaaiter dan tidak ada metode ekstensi”

Lebih banyak jawaban terkait untuk “getawaaiter dan tidak ada metode ekstensi” di C#

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya