I know I can make it. a qualifier, for example, a member with clearing Resharper code.
Can I use a redundant name classifier for static methods?
public class Foo { public void Bar() { StaticMethod(); } private static void StaticMethod() { } }
Will be forced to:
public class Foo { public void Bar() { Foo.StaticMethod(); } private static void StaticMethod() { } }
mll
source share