İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0066

'event': olay bir temsilci türünde olmalıdır

Event anahtar sözcüğü bir temsilci türü gerektirir. Daha fazla bilgi için bkz . Olaylar ve Temsilciler.

Aşağıdaki örnek CS0066 oluşturur:

C#
// 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()  
   {  
   }  
}