已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
更新:2007 年 11 月
建立陣列必須有陣列大小或陣列初始設定式
未正確地宣告陣列。
下列範例會產生 CS1586:
// CS1586.cs using System; class MyClass { public static void Main() { int[] a = new int[]; // CS1586 // try the following line instead int[] b = new int[5]; } }