Coroutines
Async iterators, IAsyncEnumerable, yield return, channels
C# "coroutines" in practice means IAsyncEnumerable plus Channel: a pull-based, async-aware streaming pipeline where await foreach drives a producer that suspends on both await and yield return. They matter because they replace…