英語で読む

次の方法で共有


コンパイラの警告 (レベル 3) CS0067

イベント 'event' は使用されません

イベント が宣言されましたが、宣言されたクラス内で使用されませんでした。

次の例では CS0067 が生成されます。

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

イベントが意図的に使用されていない場合 (たとえば、インターフェイス実装の一部である場合) は、次のように不要なフィールドが生成されないようにすることができます。

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 { } }  
}