|
@@ -5,6 +5,8 @@
|
|
|
// See https://github.com/dotnet/csharplang/blob/master/proposals/async-streams.md for the definition of this interface
|
|
|
// and the design rationale. (8/30/2017)
|
|
|
|
|
|
+#if !HAS_ASYNCENUMERABLE
|
|
|
+
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace System.Collections.Generic
|
|
@@ -30,3 +32,5 @@ namespace System.Collections.Generic
|
|
|
ValueTask<bool> MoveNextAsync();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+#endif
|