예제 #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);
예제 #2
0
 public static IAsyncEnumerable <TResult> SelectMany <TSource, TResult>(this IAsyncEnumerable <TSource> source, Func <TSource, int, IAsyncEnumerable <TResult> > selector) =>
 LinqEnumerable.SelectMany(source, selector);