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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0069-2.cs
blob
b7ba89c76129174bc59293f042342bc9c7c70a2c
1
// CS0069: Event in interface cannot have add or remove accessors
2
// Line: 11
3
4
using
System
;
5
6
public delegate void
FooHandler
();
7
8
interface
IBar
<
T
>
9
{
10
event
FooHandler OnFoo
{
11
remove
{ }
12
}
13
}
14