Field Naming Style
Hello
I have the following field naming style spread through my project:
private bool m_isEnabled;
If I alt+enter this field, it will become:
private bool _misEnabled;
What could I change to make Resharper understand that I don't need that "m" anymore?
This is how the field is supposed to be:
private bool _isEnabled;
Than you!
Please sign in to leave a comment.