While I was working on #500 I encountered another issue:
CodeFix removes multiple variable declaration.
The following:
public int x, y;
public int X
{
get { return x; }
set { x = value; }
}
Get transformed into
public int X { get; set; }
The y gets removed.
While I was working on #500 I encountered another issue:
CodeFix removes multiple variable declaration.
The following:
Get transformed into
The
ygets removed.