-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Area-IDEBugIDE-CodeStyleBuilt-in analyzers, fixes, and refactoringsBuilt-in analyzers, fixes, and refactoringshelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it
Milestone
Description
Ported from #40758 (comment)
Steps to Reproduce:
class C
{
public int Test1() { return 1; }
public int Test2() { return 0; }
}
Execute Replace method with property
on Test1
Expected Behavior:
class C
{
public int Test1 => 1;
public int Test2() { return 0; }
}
Actual Behavior:
class C
{
public int Test1 => 1; public int Test2() { return 0; }
}
Metadata
Metadata
Assignees
Labels
Area-IDEBugIDE-CodeStyleBuilt-in analyzers, fixes, and refactoringsBuilt-in analyzers, fixes, and refactoringshelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it