编译器错误 CS0196
指针必须只根据一个值进行索引
指针不能有多个索引。 有关详细信息,请参阅指针类型
下面的示例生成 CS0196:
C#
// CS0196.cs
public class MyClass
{
public static void Main ()
{
int *i = null;
int j = 0;
j = i[1,2]; // CS0196
// try the following line instead
// j = i[1];
}
}