Open Vannevelj opened 7 years ago
Have an analyzer that changes the current method signature to be its sync version. This includes changing the return type, removing the async modifier and changing the method name (if appropriate).
async
Example 1:
async Task MyMethodAsync() { }
void MyMethod() { }
Example 2:
async Task<int> MyMethodAsync() { }
int MyMethod() { }
Example 3:
async Task MyMethod() { }
Have an analyzer that changes the current method signature to be its sync version. This includes changing the return type, removing the
async
modifier and changing the method name (if appropriate).Example 1:
Example 2:
Example 3: