更新:2007 年 11 月
错误消息
[] 内索引数错误,应为“number”数组访问操作在方括号内指定的维数不正确。有关更多信息,请参见
示例
下面的示例生成 CS0022:
复制代码 | |
---|---|
// CS0022.cs public class MyClass { public static void Main() { int[] a = new int[10]; a[0] = 0; // single-dimension array a[0,1] = 9; // CS0022, the array does not have two dimensions } } |