1 // CS0070: The event `Button.Click' can only appear on the left hand side of += or -= when used outside of the type `Button'
6 public delegate void EventHandler (int i
, int j
);
10 public event EventHandler Click
;
16 Button Button1
= new Button ();
18 public void Connect ()
20 Button1
.Click
= new EventHandler (Button1_Click
);
23 public void Button1_Click (int i
, int j
)
27 public static void Main ()