This:
async void FooAsync()
{
}
Becomes:
async Task FooAsync()
{
}
It's safe to assume that other than something looking like void (sender object, T e) where T:EventArgs is a wrong use of async void.
Severity: Warning
Diagnostic Id: CC0077
Category: Usage
@RobertoRodrigues is working on it.
This:
Becomes:
It's safe to assume that other than something looking like void (sender object, T e) where T:EventArgs is a wrong use of async void.
Severity:
WarningDiagnostic Id:
CC0077Category:
Usage@RobertoRodrigues is working on it.