使用英语阅读

通过


编译器错误 CS0544

“property overrid”:不能重写,因为“non-property”不是属性

尝试将非属性数据类型重写为 属性,这是不允许的。

以下示例生成 CS0544:

// CS0544.cs  
// compile with: /target:library  
public class a  
{  
   public int i;  
}  
  
public class b : a  
{  
   public override int i {   // CS0544  
   // try the following line instead  
   // public new int i {  
      get  
      {  
         return 0;  
      }  
   }  
}