Dasync.Collections.AsyncEnumerableAdapterExtensions
Extension methods for IAsyncEnumerable<T> for backward compatibility with version 1 of this libraray.
Not recommended to use.
namespace Dasync.Collections
{
public static class AsyncEnumerableAdapterExtensions
{
public static IEnumerable<T> ToEnumerable<T>(this IAsyncEnumerable<T> asyncEnumerable);
public static IEnumerator<T> ToEnumerator<T>(this IAsyncEnumerator<T> asyncEnumerator);
public static IEnumerator<T> GetEnumerator<T>(this IAsyncEnumerable<T> asyncEnumerable);
}
}