Leggere in inglese

Condividi tramite


Errore del compilatore CS0066

'event': l'evento deve essere di un tipo delegato

La parola chiave event richiede un tipo delegate . Per altre informazioni, vedere Eventi e Delegati.

L'esempio seguente genera l'errore 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()  
   {  
   }  
}