PreviousNext

Using async disposable and async enumerable in frameworks older than .NET Core 3.0

by bill-s, 2019-12-03T02:56:32.762Z

One of the awesome features introduced in .NET Core 3.0 and C# 8.0 are async streams. The feature consists of two parts – async disposable, for async clean up, as well as async enumerable, for async iteration.

Read More