共用方式為


編譯器錯誤 CS0073

更新:2007 年 11 月

錯誤訊息

add 或 remove 存取子必須有主體

事件定義中的 addremove 關鍵字必須有主體。如需詳細資訊,請參閱事件 (C# 程式設計手冊)

下列範例會產生 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()
   {
   }
}