Leggere in inglese

Condividi tramite


Errore del compilatore CS0068

'event': l'evento nell'interfaccia non può avere un inizializzatore

Un evento in un'interfaccia non può avere un inizializzatore. Per altre informazioni, vedere Interfacce.

L'esempio seguente genera l'errore CS0068:

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