649 Views
One of the many great features of C# 8 is async streams. Before C# 8, you could use the await keyword only to get a single result - when the asynchronous method returns the result. This changes with C# 8. Using await it's now possible to get a stream of results.
0 comments