更新:2007 年 11 月
错误消息
“event”: 抽象事件不能有初始值设定项如果
下面的示例生成 CS0074:
复制代码 | |
---|---|
// CS0074.cs delegate void D(); abstract class Test { public abstract event D e = null; // CS0074 // try the following line instead // public abstract event D e; public static void Main() { } } |