[DevExpress Support Team: CLONED FROM T346361: CodeRush for Roslyn Code CleanUp issue]
The option "Use explicit this qualifier for fields" places "this" in front of static variables which is an error.
C#private static Int myInt = 0;
static MyStaticMethod() {
// This is a compile error
this.myInt = 1;
}
Thanks for the provided code sample. I have reproduced this issue. We will work on fixing it in future updates.