Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

Parallel.ForEach can cause a "Out Of Memory" exception if working with a enumerable with a large object

How to put a task to sleep (or delay) in C# 4.0?

Why does TaskCanceledException occur?

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

multiple awaits vs Task.WaitAll - equivalent?

Is Task.Factory.StartNew() guaranteed to use another thread than the calling thread?

What is a replacement method for Task.Run in .NET 4.0 using C#?

How to create a task (TPL) running a STA thread?

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?