This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Description
If you have a class and field like this:
public class MyClass {
private bool myBool;
}
It will be renamed _myBool, and all references it to it will be replaced correctly.
But when it is referenced via an instance of that class (inside the class), it is not renamed, leading to compiler error:
private void SomeMethodInsideMyClass(MyClass mc) {
if (mc.myBool)...
}