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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0079-3.cs
blob
fcfd2ca002ef8a92c543dae4eb9618181647de12
1
// CS0079: The event `Foo.BaseFoo.Changed' can only appear on the left hand side of `+=' or `-=' operator
2
// Line: 16
3
4
using
System
;
5
6
namespace
Foo
7
{
8
public delegate void
VoidHandler
();
9
10
public abstract class
BaseFoo
11
{
12
public abstract event
VoidHandler Changed
;
13
14
public string
Name
{
15
set
{
16
Changed
();
17
}
18
}
19
}
20
}