編譯器警告 (層級 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 { } }
}