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
2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
tests
/
test-509.cs
blob
1acca60bc37be4b595b095baa5124dd89b47d90b
1
public delegate void
DelegateHandler
();
2
3
public interface
EventInterface
4
{
5
event
DelegateHandler OnEvent
;
6
}
7
8
public class
BaseClass
9
{
10
public event
DelegateHandler OnEvent
;
11
}
12
13
public class
ExtendingClass
:
BaseClass
,
EventInterface
14
{
15
public static void
Main
()
16
{
17
}
18
}