Compiler Error CS0247
Cannot use a negative size with stackalloc
A negative number was passed to a stackalloc statement.
The following sample generates CS0247:
C#
// CS0247.cs
// compile with: /unsafe
public class MyClass
{
unsafe public static void Main()
{
int *p = stackalloc int[-30]; // CS0247
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: