使用英语阅读

通过


编译器错误 CS1512

关键字“base”在当前上下文中不可用

在方法、属性或构造函数外部使用了 base 关键字。

下面的示例生成 CS1512:

C#
// CS1512.cs  
using System;  
  
class Base {}  
  
class CMyClass : Base  
{  
    private String xx = base.ToString();   // CS1512  
    // Try putting this initialization in the constructor instead:  
    // public CMyClass()  
    // {  
    //    xx = base.ToString();  
    // }  
  
    public static void Main()  
    {  
        CMyClass z = new CMyClass();  
    }  
}