using System; interface IMyInterface { event EventHandler MyEvent; } public class MyClass: IMyInterface, IMyInterface { event EventHandler IMyInterface.MyEvent { add {} remove {} } event EventHandler IMyInterface.MyEvent { add {} remove {} } } class X { public static void Main () { } }