Ler em inglês

Partilhar via


Erro do compilador CS0066

'evento': o evento deve ser do tipo delegado

A palavra-chave de evento requer um tipo de delegado . Para obter mais informações, consulte Eventos e delegados.

O exemplo a seguir gera 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()  
   {  
   }  
}