编译器错误 CS0068
“event”: 接口中的事件不能有初始值设定项
接口中的事件不能有初始值设定项。 有关详细信息,请参阅接口。
下面的示例生成 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()
{
}
}