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
remove NotWorking
[mcs.git]
/
tests
/
test-anon-37.cs
blob
e5d2248ae32f4cbe7bc77009e228d94d7a368adb
1
using
System
;
2
3
public class
DelegateInit
{
4
public delegate void
FooDelegate
();
5
6
public static readonly
FooDelegate _print
=
7
delegate
() {
8
Console
.
WriteLine
(
"delegate!"
);
9
};
10
11
public static void
Main
(
string
[]
args
) {
12
_print
();
13
}
14
}