Lire en anglais

Partager via


Erreur du compilateur CS0066

'event' : l’événement doit être de type délégué

Le mot clé de l’événement nécessite un type délégué . Pour plus d’informations, consultez Événements et Délégués.

L’exemple suivant génère l’erreur 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()  
   {  
   }  
}