更新:2007 年 11 月

错误消息

关键字“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;
   }
}