Lezen in het Engels

Delen via


Compilerfout CS1575

Voor een stackalloc-expressie is [] na het type vereist

De grootte van de aangevraagde toewijzing, met stackalloc, moet tussen vierkante haken worden opgegeven.

In het volgende voorbeeld wordt CS1575 gegenereerd:

C#
// 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];  
   }  
}