編譯器錯誤 CS1511
關鍵字 'base' 在靜態方法中無效
base 關鍵字已用於 靜態 方法中。 只能在執行個體建構函式、執行個體方法或執行個體存取子中呼叫base
。
下列範例會產生 CS1511。
// CS1511.cs
// compile with: /target:library
public class A
{
public int j = 0;
}
class C : A
{
public void Method()
{
base.j = 3; // base allowed here
}
public static int StaticMethod()
{
base.j = 3; // CS1511
return 1;
}
}