C# Error CS1575 – A stackalloc expression requires [] after type

C# Error

CS1575 – A stackalloc expression requires [] after type

Reason for the Error & Solution

A stackalloc expression requires [] after type

The size of the requested allocation, with , 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];  
   }  
}  

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...