Exemplo n.º 1
0
 public static IAsyncEnumerable <TResult> SelectMany <TSource, TCollection, TResult>(this IAsyncEnumerable <TSource> source, Func <TSource, int, IAsyncEnumerable <TCollection> > collectionSelector, Func <TSource, TCollection, TResult> resultSelector) =>
 LinqEnumerable.SelectMany(source, collectionSelector, resultSelector);
Exemplo n.º 2
0
 public static IAsyncEnumerable <TResult> SelectMany <TSource, TResult>(this IAsyncEnumerable <TSource> source, Func <TSource, int, IAsyncEnumerable <TResult> > selector) =>
 LinqEnumerable.SelectMany(source, selector);