Authorised Territory code examples - This .NET 8 C# #tutorial shows how to utilise TransformManyBlock and ActionBlock together with BatchBlock in Task Parallel Library Dataflow.
First, we load data into BatchBlock setting the batch size and GroupingDataflowBlockOptions.
Next, TransformManyBlock is created to process a batch into list of strings and is linked to the BatchBlock.
Finally, ActionBlock is added to display the data to the console window.