更新:2007 年 11 月
错误消息
“property”:属性或索引器不能有 void 类型有关更多信息,请参见
下面的示例生成 CS0547:
复制代码 | |
---|---|
// CS0547.cs public class a { public void i // CS0547 // Try the following declaration instead: // public int i { get { return 0; } } } public class b : a { public static void Main() { } } |