使用英语阅读

通过


编译器错误 CS1055

应为 add 访问器或 remove 访问器

如果 事件 未声明为字段,则它必须同时定义 addremove 访问器函数。

下面的示例生成 CS1055:

// CS1055.cs  
delegate void del();  
class Test  
{  
   public event del MyEvent  
   {  
      int i;   // CS1055  
      // uncomment accessors and delete previous line to resolve  
      // add  
      // {  
      //    MyEvent += value;  
      // }  
      // remove  
      // {  
      //    MyEvent -= value;  
      // }  
   }  
  
   public static void Main()  
   {  
   }  
}