AsyncEnumerator
AsyncEnumerator copied to clipboard
Task-like Async Enumerators in C# 7
Results
2
AsyncEnumerator issues
Sort by
recently updated
recently updated
newest added
Defining an empty enumerator ``` private static async AsyncEnumerator GetEmptyEnumerator() { var yield = await AsyncEnumerator.Capture(); return yield.Break(); } ``` yields the enumerators `MoveNext` method to return `true` on the...