編譯器錯誤 CS1575
stackalloc 運算式在類型之後需要有 []
要求的配置大小與 stackalloc,必須在方括號中指定。
下例會產生 CS1575:
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];
}
}