共用方式為


編譯器錯誤 CS1575

更新:2007 年 11 月

錯誤訊息

stackalloc 運算式要求 [] 位於型別之後

所要求的 stackalloc 配置大小必須指定於方括弧中。

下列範例會產生 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];
   }
}