Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

ThreadPool.QueueUserWorkItem vs Task.Factory.StartNew

Should i use ThreadPools or Task Parallel Library for IO-bound operations

Simplest way to run three methods in parallel in C#

Task parallel library replacement for BackgroundWorker?

Deserialize JSON to Array or List with HTTPClient .ReadAsAsync using .NET 4.0 Task pattern

How can I prevent synchronous continuations on a Task?

Calling async methods from non-async code

What is the best way to catch exception in Task?

Cannot implicitly convert type 'string' to 'System.Threading.Tasks.Task<string>'

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

Is prevTask.Wait() recommended to be used with ContinueWith (from the Tasks library)?

c# task-parallel-library

Is there a Task based replacement for System.Threading.Timer?

Task.Run with Parameter(s)?

Proper way to implement a never ending task. (Timers vs Task)

Is there anything like asynchronous BlockingCollection<T>?

The current SynchronizationContext may not be used as a TaskScheduler

A Task's exception(s) were not observed either by Waiting on the Task or accessing its Exception property. As a result, the unobserved exception was

An async/await example that causes a deadlock

Simplest way to do a fire and forget method in c# 4.0

Why does this async action hang when I try and access the Result property of my Task?