編譯器錯誤 CS0196
更新:2007 年 11 月
錯誤訊息
只能使用一個值對指標進行索引
指標不能有多個索引。如需詳細資訊,請參閱指標型別 (C# 程式設計手冊)。
下列範例會產生 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];
}
}