Skip to content

Latest commit

 

History

History
executable file
·
15 lines (13 loc) · 188 Bytes

MA0155.md

File metadata and controls

executable file
·
15 lines (13 loc) · 188 Bytes

MA0155 - Do not use async void methods

// not-compliant
async void SomeMethod()
{
    await Task.Delay(1000);
}

// ok
async Task SomeMethod()
{
    await Task.Delay(1000);
}