编译器错误 CS0548
“property”:属性或索引器必须至少有一个访问器
属性必须至少有一个访问器(“get”或“set”)方法。
有关详细信息,请参阅使用属性。
以下示例生成 CS0548。
// CS0548.cs
// compile with: /target:library
public class b
{
public int MyProp {} // CS0548
public int MyProp2 // OK
{
get
{
return 0;
}
set {}
}
}