I am refactoring a little bit of code and I think I have created some instance variables that are being hidden(shadowed) in older methods. I want to see a warning wherever the hiding(shadowing) happens so I can check to make sure that it’s actually what I want (and it’s hardly ever what I want). Is there any easy way to do that?
Share
If you run Code Analysis, that’ll show up (as CA1500 from the Maintanability section).