moving apidiff out of preview (#3595)
This commit is contained in:
committed by
GitHub
parent
bc827f2b64
commit
58b0c128d2
@@ -0,0 +1,14 @@
|
||||
# System.Collections.Generic
|
||||
|
||||
``` diff
|
||||
namespace System.Collections.Generic {
|
||||
+ public interface IAsyncEnumerable<out T> {
|
||||
+ IAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken = default(CancellationToken));
|
||||
+ }
|
||||
+ public interface IAsyncEnumerator<out T> : IAsyncDisposable {
|
||||
+ T Current { get; }
|
||||
+ ValueTask<bool> MoveNextAsync();
|
||||
+ }
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user