Async Enumerable in C# (Part 3)

added by DotNetKicks
7/2/2022 2:17:23 PM

357 Views

In this third part of my series on IAsyncEnumerable ( part 1, part 2), let's discuss some of the differences between processing a sequence in parallel verses sequentially (sometimes referred to as "in series"). When we write a regular foreach loop to iterate through an IEnumerable sequence like in the example below, we're processing our sequence in series.


0 comments