Bug
The code-fix of CC0052 (ReadonlyFieldAnalyzer) duplicates the #region
Before:
public class Foo
{
#region region
Foo foo = new Foo();
#endregion
}
Current output after code-fix applied:
public class Foo
{
#region region
readonly
#region region
Foo foo = new Foo();
#endregion
}
Expected output after fix applied:
public class Foo
{
#region region
readonly Foo foo = new Foo();
#endregion
}
Bug
The code-fix of CC0052 (ReadonlyFieldAnalyzer) duplicates the
#regionBefore:
Current output after code-fix applied:
Expected output after fix applied: