Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Cannot create an array with a negative size
An array size was specified with a negative number. For more information, see Arrays (C# Programming Guide).
Example
The following sample generates CS0248:
// CS0248.cs
class MyClass
{
public static void Main()
{
int[] myArray = new int[-3] {1,2,3}; // CS0248, pass a nonnegative number
}
}