更新:2007 年 11 月
错误消息
索引器不能有 void 类型下面的示例生成 CS0620:
复制代码 | |
---|---|
// CS0620.cs class MyClass { public static void Main() { MyClass test = new MyClass(); System.Console.WriteLine(test[2]); } void this [int intI] // CS0620, return type cannot be void { get { // will need to return some value } } } |