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