repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0079-2.cs
blob
d4374796d858de3ff9f7d7233f3f820749776a84
1
// CS0079: The event `Foo.Event2' can only appear on the left hand side of `+=' or `-=' operator
2
// Line: 11
3
4
using
System
;
5
6
public class
Foo
{
7
EventHandler event2
;
8
9
public
Foo
()
10
{
11
Event2
=
null
;
12
}
13
14
public event
EventHandler Event2
{
15
add
{ event2 += value; }
16
remove
{event2 -= value; }
17
}
18
}