更新:2007 年 11 月

错误消息

接口中的事件不能具有 add 或 remove 访问器

不能在 interface 中定义事件的访问函数。有关更多信息,请参见事件(C# 编程指南)接口(C# 编程指南)

下面的示例生成 CS0069:

 复制代码
// CS0069.cs
// compile with: /target:library

public delegate void EventHandler();

public interface a
{
   event EventHandler Click { remove {} }   // CS0069
   event EventHandler Click2;   // OK
}