Sdílet prostřednictvím


Compilerfehler CS1575

Aktualisiert: November 2007

Fehlermeldung

Ein stackalloc-Ausdruck erfordert [] nach "type".
A stackalloc expression requires [] after type

Die Größe der angeforderten Reservierung (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];
   }
}