
Multithreading with C# Cookbook, Second Edition
By :

This recipe shows how to implement a Parallel Pipeline pattern with the help of the TPL DataFlow library.
To start this recipe, you will need to run Visual Studio 2015. There are no other prerequisites. The source code for this recipe can be found at BookSamples\Chapter10\Recipe3
.
To understand how to implement Parallel Pipeline with TPL DataFlow, perform the following steps:
Start Visual Studio 2015. Create a new C# console application project.
Add references to the Microsoft TPL DataFlow NuGet package. Follow these steps to do so:
Right-click on the References folder in the project and select the Manage NuGet Packages... menu option.
Now, add your preferred references to the Microsoft TPL DataFlow NuGet package. You can use the search option in the Manage NuGet Packages dialog as follows:
In the Program.cs
file, add the following using
directives:
using System; using System.Globalization; using System.Threading; using...
Change the font size
Change margin width
Change background colour