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-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0071-3.cs
blob
721952b1e42833a1f7cfa7d7b4b22b3f5b1ada0b
1
// CS0071: `Test.IBlah.Foo': An explicit interface implementation of an event must use property syntax
2
// Line: 14
3
4
using
System
;
5
6
delegate void
Delegate
();
7
8
interface
IBlah
9
{
10
event
Delegate Foo
;
11
}
12
13
class
Test
:
IBlah
{
14
event
Delegate IBlah
.
Foo
;
15
16
public static void
Main
()
17
{
18
}
19
}