編譯器錯誤 CS0070
事件 'event' 只能出現在 += 或 -= 的左邊 (除非從類型 'type' 中使用)
事件 在其定義所在的類別之外只能加減參考。 如需詳細資訊,請參閱事件。
下列範例會產生 CS0070:
// CS0070.cs
using System;
public delegate void EventHandler();
public class A
{
public event EventHandler Click;
public static void OnClick()
{
EventHandler eh;
A a = new A();
eh = a.Click;
}
public static void Main()
{
}
}
public class B
{
public int Foo ()
{
EventHandler eh = new EventHandler(A.OnClick);
A a = new A();
eh = a.Click; // CS0070
// try the following line instead
// a.Click += eh;
return 1;
}
}