Linq methods for IAsyncEnumerable

前端 未结 1 862
自闭症患者
自闭症患者 2021-01-17 11:13

When working with an IEnumerable there are the build-in extension methods from the System.Linq namespace such as Skip,

相关标签:
1条回答
  • 2021-01-17 11:43

    There is, in the System.Linq.Async namespace from the System.Reactive package. If you don't want the full System.Reactive package, you can use the System.Linq.Async package directly (it's part of System.Reactive).
    You can read this github issue. The source for System.Linq.Async can be found here.

    0 讨论(0)
提交回复
热议问题