Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c#-5.0

await Task.WhenAll() vs Task.WhenAll().Wait()

What actually happens when using async/await inside a LINQ statement?

c# linq asynchronous c#-5.0

Why is my async/await with CancellationTokenSource leaking memory?

Async implementation of IValueConverter

await Task.Factory.StartNew(() => versus Task.Start; await Task;

c# async-await c#-5.0

How can I use the async keywords in a project targeting.net 4.0

How to yield return item when doing Task.WhenAny

c# async-await c#-5.0

How is async w/ await different from a synchronous call?

ReSharper: setting C# language level for Solution

Combining CallerMemberName with params

Why can't I catch an exception from async code?

c# .net c#-5.0

Using async without await?

Using async without await

Convert async lambda expression to delegate type System.Func<T>?

Where can I find the C# 5 language specification? [closed]

C# 5.0 async/await feature and Rx - Reactive Extensions

Has foreach's use of variables been changed in C# 5?

c# foreach .net-4.5 c#-5.0

multiple parallel async calls with await

Error CS1056: Unexpected character '$' running the msbuild on a tfs continuous integration process

Is async/await suitable for methods that are both IO and CPU bound?