Click here to Skip to main content
15,867,282 members
Everything / TPL

TPL

TPL

Great Reads

by Mohammad Elsheimy
SynchronizationContext class and how it affects code behavior in action, and a look at Task.ConfigureAwait()
by Manish Gupta .Net
How to use TPL dataflow for reading files and inserting to database
by Stephen Marcus
Replaces events and any other async void cases with awaitable Task signatures.
by Marco-Hans Van Der Willik
This article explores the performance, scalability and limitations of the various .NET Threading Implementations.

Latest Articles

by Marco-Hans Van Der Willik
This article explores the performance, scalability and limitations of the various .NET Threading Implementations.
by Mohammad Elsheimy
SynchronizationContext class and how it affects code behavior in action, and a look at Task.ConfigureAwait()
by Stephen Marcus
Replaces events and any other async void cases with awaitable Task signatures.
by Marc Clifton
A discussion of various approaches to threading, covering locks, mutexes, semaphores, concurrent collections, work queues, threads, PLINQ, TPL, exception handling, and cancellation tokens

All Articles

Sort by Score

TPL 

28 Aug 2021 by Mohammad Elsheimy
SynchronizationContext class and how it affects code behavior in action, and a look at Task.ConfigureAwait()
11 Jul 2023 by Marco-Hans Van Der Willik
This article explores the performance, scalability and limitations of the various .NET Threading Implementations.
2 Aug 2018 by Marc Clifton
A discussion of various approaches to threading, covering locks, mutexes, semaphores, concurrent collections, work queues, threads, PLINQ, TPL, exception handling, and cancellation tokens
3 Sep 2012 by Christopher Diggins
An informal survey of implementation techniques of the map higher-order function for arrays in C#.
24 Jan 2012 by Karl Sanford
Removing noise from the Kinect Depth Frames in real-time using pixel filters and weighted moving average techniques.
9 Aug 2016 by Rasik Bihari Tiwari
Let's understand the evolution from older multi-threading world to Task Parallel library (alias TPL). What are the use cases where you would want to leverage TPL instead of creating threads on your own. What are exact areas where TPL has real edge.
2 Dec 2013 by Gary Owsiany
Keeping a WPF application responsive involves using background processes to handle long running tasks, and the TPL makes this programming task easier than ever. It also provides a way to cancel the task asynchronously and to update the UI (for example, with a progress bar) from the background proces
31 Jan 2013 by Garrett M. Groff
Random data/password generator using WPF and MVVM to accomplish clean separation of GUI logic and business logic using MVVM pattern.
1 Mar 2013 by essence
Local scope delegates and Lambda expressions allow for some very smart and useful utility functions.