编译器警告(等级 3)CS0067
永远不会使用该事件“event”
已声明 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 { } }
}