Compilerwarnung (Stufe 2) CS0251
Aktualisiert: November 2007
Fehlermeldung
Indizierung eines Arrays mit einem negativen Index (Arrayindizes starten immer mit Null).
Indexing an array with a negative index (array indices always start at zero)
Verwenden Sie für den Index im Array keine negativen Zahlen.
Im folgenden Beispiel wird CS0251 generiert:
// 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);
}
}
}