Skip to content

Instantly share code, notes, and snippets.

@mirmostafa
Last active September 9, 2021 17:55
Show Gist options
  • Save mirmostafa/2e814f08fe813be83d6c6e32736a856c to your computer and use it in GitHub Desktop.
Save mirmostafa/2e814f08fe813be83d6c6e32736a856c to your computer and use it in GitHub Desktop.
IAsyncDisposable Pattern
public virtual ValueTask DisposeAsync()
{
try
{
Dispose();
return default;
}
catch (Exception exc)
{
return new ValueTask(Task.FromException(exc));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment