使用英语阅读

通过


编译器错误 CS1014

应为 get 或 set 访问器

在属性声明中找到了一个方法声明。 在属性中只能声明 getset 方法。

有关属性的详细信息,请参阅 Using Properties

示例

下面的示例生成 CS1014。

// CS1014.cs  
// compile with: /target:library  
class Sample  
{  
   public int TestProperty  
   {  
      get  
      {  
         return 0;  
      }  
      int z;   // CS1014  not get or set  
   }  
}