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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0073.cs
blob
f7893ab6be5035a90b92ad2c9c19dce393268335
1
// cs0073.cs: An add or remove accessor must have a body
2
// Line: 9
3
4
using
System
;
5
6
class
ErrorCS0073
{
7
delegate void
Handler
();
8
event
Handler OnFoo
{
9
add
;
10
remove
{
11
OnFoo
-=
value
;
12
}
13
}
14
public static void
Main
() {
15
}
16
}
17