更新:2007 年 11 月
错误消息
属性或索引器“property”无法用于此上下文中,因为它缺少 get 访问器使用
示例
下面的示例生成 CS0154:
复制代码 | |
---|---|
// CS0154.cs public class MyClass2 { public int i { set { } // uncomment the get method to resolve this error /* get { return 0; } */ } } public class MyClass { public static void Main() { MyClass2 myClass2 = new MyClass2(); int j = myClass2.i; // CS0154, no get method } } |