/// <summary> /// Generates a range of integer values as an async sequence. /// </summary> /// <param name="start">The starting value.</param> /// <param name="count">The number of items to generate.</param> /// <returns>The new IAsyncEnumerable instance.</returns> public static IAsyncEnumerable <int> Range(int start, int count) { return(AsyncEnumerable.Range(start, count)); }
public static IAsyncEnumerable <int> Range(int start, int count) => LinqEnumerable.Range(start, count);