repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git]
/
mcs
/
errors
/
cs0069.cs
blob
70511c3c96d37e052206075fecce39777d0de9c4
1
// CS0069: Event in interface cannot have add or remove accessors
2
// Line: 13
3
4
using
System
;
5
6
public delegate void
FooHandler
();
7
8
interface
IBar
{
9
event
FooHandler OnFoo
{
10
add
{ }
11
remove
{ }
12
}
13
}
14