Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c#-5.0

Request.Content.ReadAsMultipartAsync never returns

c# asp.net-web-api c#-5.0

How does await async work in C# [closed]

TaskCompletionSource : When to use SetResult() versus TrySetResult(), etc

Is it OK to have virtual async method on base class?

What are the differences between using ConfigureAwait(false) and Task.Run?

Architecture for async/await

Why doesn't generic ICollection implement IReadOnlyCollection in .NET 4.5?

What can I do in C# 5 with .Net 4.5 that I couldn't do in C# 4 with .Net 4? [closed]

How does C# 5.0's async-await feature differ from the TPL?

Do the new C# 5.0 'async' and 'await' keywords use multiple cores?

Does the use of async/await create a new thread?

Fire-and-forget with async vs "old async delegate"

c# asynchronous c#-5.0

Why does TaskCanceledException occur?

Difference between the TPL & async/await (Thread handling)

How to Async Files.ReadAllLines and await for results?

What's the new C# await feature do? [closed]

c# c#-5.0 async-await

Why can't "async void" unit tests be recognized?

Await in catch block

Best way to convert callback-based async method to awaitable task

A good solution for await in try/catch/finally?