如何在同名的本地和静态变量之间进行辩护

Moe*_*sko 5 c# static scope

举例说明:

public class Something
{
    private static int number;

    static Something()
    {
        int number = 10;

        // Syntax to distingish between local variable and static variable ?
    }
}
Run Code Online (Sandbox Code Playgroud)

在静态构造函数中,是否有一种语法可用于区分名为"number"的局部变量和同名的静态变量?

Mar*_*k H 8

Something.number
Run Code Online (Sandbox Code Playgroud)

明显,没有?