Force redundant name qualifier for static methods in Resharper

I know I can force "this." qualifier for instance member with Resharper code cleanup.

Can I force redundant name qualifier for static methods?

public class Foo
{
    public void Bar()
    {
        StaticMethod();
    }

    private static void StaticMethod()
    {

    }
}

Would be forced to this:

public class Foo
{
    public void Bar()
    {
        Foo.StaticMethod();
    }

    private static void StaticMethod()
    {

    }
}

I don't see any way to do this in ReSharper 5.x, and have seen nothing about it in 6.x EAP/Beta releases, but don't have an instance of 6.x to verify.

You could suggest it as a feature in JetBrains' issue tracker: http://confluence.jetbrains.net/display/ReSharper/ReSharper+Issue+Tracker

链接地址: http://www.djcxy.com/p/53326.html

上一篇: 计算蟒蛇的月球/阴历假期

下一篇: 在Resharper中为静态方法强制使用冗余名称限定符