Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in async-await

When would I use Task.Yield()?

c# async-await

Async/Await Class Constructor

What is the purpose of "return await" in C#?

c# .net .net-4.5 async-await

Use async await with Array.map

If async-await doesn't create any additional threads, then how does it make applications responsive?

Catch an exception thrown by an async void method

Running multiple async tasks and waiting for them all to complete

Awaiting multiple Tasks with different results

How can I use async/await at the top level?

Do you have to put Task.Run in a method to make it async?

c# .net-4.5 async-await c#-5.0

HttpClient.GetAsync(...) never returns when using await/async

Synchronously waiting for an async operation, and why does Wait() freeze the program here

What is the difference between asynchronous programming and multithreading?

When correctly use Task.Run and when just async-await

Can constructors be async?

c# constructor async-await

How to safely call an async method in C# without await

WaitAll vs WhenAll

Why can't I use the 'await' operator within the body of a lock statement?

c# .net async-await

Is Task.Result the same as .GetAwaiter.GetResult()?

c# async-await

Using async/await for multiple tasks