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
/
gcs0065.cs
blob
efb72438bbac0e67c8bb1260badea32f51316ac0
1
// CS0065: `EventClass<T>.handler': event property must have both add and remove accessors
2
// Line: 10
3
4
using
System
;
5
6
public delegate void
EventHandler
(
object
sender
,
EventArgs e
);
7
8
public class
EventClass
<
T
>
9
{
10
event
EventHandler handler { add {}
}
11
}
12