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-01-24 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-536.cs
blob
e4a2e5e8126a2a612f786d59f0e86f3a7248cf19
1
public delegate void
FooHandler
();
2
3
public static class
Test
4
{
5
private static void
OnFooTest
()
6
{
7
}
8
9
public static event
FooHandler Foo
;
10
11
public static void
Main
()
12
{
13
FooHandler foo
=
delegate
{
14
Foo
+=
OnFooTest
;
15
};
16
}
17
}