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.
A stackalloc expression requires [] after type
The size of the requested allocation, with stackalloc, must be specified in square brackets.
The following sample generates CS1575:
// CS1575.cs
// compile with: /unsafe
public class MyClass
{
unsafe public static void Main()
{
int *p = stackalloc int (30); // CS1575
// try the following line instead
// int *p = stackalloc int [30];
}
}
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.