编译器错误 CS1014
应为 get 或 set 访问器
在属性声明中找到了一个方法声明。 在属性中只能声明 get
和 set
方法。
有关属性的详细信息,请参阅 Using Properties。
下面的示例生成 CS1014。
// CS1014.cs
// compile with: /target:library
class Sample
{
public int TestProperty
{
get
{
return 0;
}
int z; // CS1014 not get or set
}
}