使用英语阅读

通过


编译器错误 CS0073

add 访问器或 remove 访问器必须有一个主体

事件 定义中的 addremove 关键字必须有一个主体。 有关详细信息,请参阅事件

以下示例生成 CS0073:

// CS0073.cs  
delegate void del();  
  
class Test  
{  
   public event del MyEvent  
   {  
      add;   // CS0073  
      // try the following lines instead  
      // add  
      // {  
      //    MyEvent += value;  
      // }  
      remove  
      {  
         MyEvent -= value;  
      }  
  
   }  
  
   public static void Main()  
   {  
   }  
}