Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Ostrzeżenie kompilatora (poziom 3) CS0067

Zdarzenie "event" nigdy nie jest używane

Zdarzenie zostało zadeklarowane, ale nigdy nie było używane w klasie, w której zostało zadeklarowane.

Poniższy przykład generuje CS0067:

C#
// CS0067.cs  
// compile with: /W:3  
using System;  
delegate void MyDelegate();  
  
class MyClass  
{  
   public event MyDelegate evt;   // CS0067  
   // uncomment TestMethod to resolve this CS0067  
/*  
   private void TestMethod()  
   {  
      if (evt != null)  
         evt();  
   }  
*/  
   public static void Main()  
   {  
   }  
}  

Jeśli zdarzenie jest nieużywane celowo, na przykład gdy jest częścią implementacji interfejsu, możesz uniknąć emitowania niepotrzebnego pola w następujący sposób:

C#
using System;  
  
public interface IThing  
{  
   event Action? E;  
}  
  
public class Thing : IThing  
{  
   // no CS0067 though the event is left unused  
   public event Action? E { add { } remove { } }  
}