Compiler Error CS0196
A pointer must be indexed by only one value
A pointer cannot have multiple indices. For more information, see Pointer types (C# Programming Guide)
The following sample generates CS0196:
// 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];
}
}