Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c#-5.0

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?

Explicitly use a Func<Task> for asynchronous lambda function when Action overload is available

c# async-await c#-5.0 lambda

call async method without await #2

Task.Yield - real usages?

What is [NotifyPropertyChangedInvocator] in C# when implements INotifyPropertyChanged?

Captured Closure (Loop Variable) in C# 5.0

An entry point cannot be marked with the 'async' modifier

c# async-await c#-5.0

Error: "Cannot use 'async' on methods without bodies". How to force async child overrides?

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?