編譯器錯誤 CS0066
'event': 事件必須為委派類型
event 關鍵字需要 委派 類型。 如需詳細資訊,請參閱事件 (機器翻譯) 和委派 (機器翻譯)。
下列範例會產生 CS0066:
// CS0066.cs
using System;
public class EventHandler
{
}
// to fix the error, remove the event declaration and the
// EventHandler class declaration, and uncomment the following line
// public delegate void EventHandler();
public class a
{
public event EventHandler Click; // CS0066
private void TestMethod()
{
if (Click != null)
Click();
}
public static void Main()
{
}
}