ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# Compiler Error CS0270 不能在变量声明中指定数组大小(请尝试使用“new”表达式初始化) 将大小指定为数组声明的一部分时会发生此错误。若要解决此错误,请使用 [new 运算符](https://msdn.microsoft.com/zh-cn/library/fa0ab757.aspx)表达式。 下面的示例生成 CS0270: ``` // CS0270.cs // compile with: /t:module public class Test { int[10] a; // CS0270 // To resolve, use the following line instead: // int[] a = new int[10]; } ```