编译器错误 CS0065
“event”:事件属性必须同时具有 add 和 remove 访问器
并不是字段的事件必须有两种访问方法。
以下示例生成 CS0065:
// CS0065.cs
using System;
public delegate void EventHandler(object sender, int e);
public class MyClass
{
public event EventHandler Click // CS0065,
{
// to fix, uncomment the add and remove definitions
/*
add
{
Click += value;
}
remove
{
Click -= value;
}
*/
}
public static void Main()
{
}
}