Non-async methods being forced to dispose sync
private void NotAnAsyncMethod() | |
{ | |
var disposableObject = new MyDisposableObject(); | |
// Unpleasant | |
disposableObject.DisposeAsync().GetAwaiter().GetResult(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment