Freigeben über


Compilerfehler CS1575

Ein stackalloc-Ausdruck erfordert [] nach Typ

Die Größe der angeforderten Zuordnung, mit stackalloc, muss in eckigen Klammern angegeben werden.

Im folgenden Beispiel wird CS1575 generiert:

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