Version Used: 16.9.6
Steps to Reproduce:
class C
{
void M()
// Test
=> Console.WriteLine();
}
Invoke the "Use block body" refactoring on the body of M.
Expected Behavior:
class C
{
void M()
{
// Test
return Console.WriteLine();
}
}
Actual Behavior:
class C
{
void M()
{
return Console.WriteLine();
}
}
Version Used: 16.9.6
Steps to Reproduce:
Invoke the "Use block body" refactoring on the body of
M.Expected Behavior:
Actual Behavior: