System.Collections.IEnumerableExtensions
Converts generic IEnumerable to IAsyncEnumerable
namespace System.Collections
{
public static class IEnumerableExtensions
{
public static IAsyncEnumerable ToAsyncEnumerable(this IEnumerable enumerable, bool runSynchronously = true);
}
}