更新:2007 年 11 月
错误消息
“field declaration”: 结构中不能有实例字段初始值设定项不能对
示例
下面的示例生成 CS0573:
复制代码 | |
---|---|
// CS0573.cs namespace x { public class clx { public static void Main() { } } public struct cly { clx a = new clx(); // CS0573 // clx a; // OK int i = 7; // CS0573 // int i; // OK } } |