Show/Hide Toolbars

XSharp

An explicit interface implementation of an event must use event accessor syntax

 

When explicitly implementing an event that was declared in an interface, you must use manually provide the add and remove event accessors that are typically provided by the compiler. The accessor code can connect the interface event to another event in your class (shown later in this topic), or to its own delegate type. For more information, see How to: Implement Interface Events.

Example

 

The following sample generates XS0071.

 

 

// XS0071.prg  
 
}