件的聲明格式:
attributes event-modifiers event type variable-declarators; attributes event-modifIErs event type member-name {event-Accessor-declarations}
事件的修飾符event-modifIEr可以是:
●new
●public
●protected
●internal
●private
●static
●virtual
●sealed
●override
●abstract
static,virtual,override和abstract修飾符同一時刻只能出現一個。事件的聲明中可以包含事件訪問說明,或者依靠編譯器自動提供一個訪問器;它也可以省略事件訪問說明,一次定義一個或多個事件。上面的例子中就省略了這個說明。
注意:使用了abstract修飾符的抽象事件中必須省略事件訪問說明,否則編譯器會提示錯誤。
事件所聲明的類型必須是一個代表(delegate)類型,代表類型應預先聲明,如上例中的public delegate void EventHandler