Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / TPL

TPL

TPL

Great Reads

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
by John Pravin
Asynchronous Programming with Task Parallel Library.
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.
by Christopher Diggins
An informal survey of implementation techniques of the map higher-order function for arrays in C#.

Latest Articles

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
by John Pravin
Asynchronous Programming with Task Parallel Library.
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.
by Christopher Diggins
An informal survey of implementation techniques of the map higher-order function for arrays in C#.

All Articles

Sort by Score

TPL 

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
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.
by Christopher Diggins
An informal survey of implementation techniques of the map higher-order function for arrays in C#.
by Ara Aviants
Armat.Threading is an asynchronous code execution library based on .NET TPL mechanisms
by Karl Sanford
Removing noise from the Kinect Depth Frames in real-time using pixel filters and weighted moving average techniques.
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.
by Marco-Hans Van Der Willik
This article explores the performance, scalability and limitations of the various .NET Threading Implementations.
by essence
Local scope delegates and Lambda expressions allow for some very smart and useful utility functions.
by Mohammad Elsheimy
SynchronizationContext class and how it affects code behavior in action, and a look at Task.ConfigureAwait()
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