編譯器警告 (層級 2) CS0251
更新:2007 年 11 月
錯誤訊息
以負值的索引檢索陣列 (陣列索引永遠從 0 開始)
不要使用負數來索引一個陣列。
下列範例會產生 CS0251:
// CS0251.cs
// compile with: /W:2
class MyClass
{
public static void Main()
{
int[] myarray = new int[] {1,2,3};
try
{
myarray[-1]++; // CS0251
// try the following line instead
// myarray[1]++;
}
catch (System.IndexOutOfRangeException e)
{
System.Console.WriteLine("{0}", e);
}
}
}