Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Błąd kompilatora CS0068

"zdarzenie": zdarzenie w interfejsie nie może mieć inicjatora

Zdarzenie w interfejsie nie może mieć inicjatora. Aby uzyskać więcej informacji, zobacz Interfejsy.

Poniższy przykład generuje CS0068:

C#
// CS0068.cs  
  
delegate void MyDelegate();  
  
interface I  
{  
   event MyDelegate d = new MyDelegate(M.f);   // CS0068  
   // try the following line instead  
   // event MyDelegate d2;  
}  
  
class M  
{  
   event MyDelegate d = new MyDelegate(M.f);  
  
   public static void f()  
   {  
   }  
  
   public static void Main()  
   {  
   }  
}