2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0079-2.cs
blob3116e51d926ccfbcd5de1329a28595bfa881687b
1 // CS0079: The event `Foo.Event2' can only appear on the left hand side of `+=' or `-=' operator
2 // Line: 11
4 using System;
6 public class Foo {
7 EventHandler event2;
9 public Foo ()
11 Event2 = null;
14 public event EventHandler Event2 {
15 add { event2 += value; }
16 remove {event2 -= value; }