編譯器錯誤 CS0065
'event': event 屬性必須同時有 add 和 remove 存取子
不是欄位的事件必須有這兩種存取方法。
下列範例會產生 CS0065:
C#
// 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()
{
}
}