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
In class/Microsoft.Build.Tasks/Microsoft.Build.Tasks:
[mcs.git]
/
tests
/
test-anon-51.cs
blob
c646c3790fc77c526dab3e3682b7723cab2ed866
1
using
System
;
2
3
public delegate void
FooDelegate
();
4
5
public class
X
{
6
public static readonly
FooDelegate Print
=
delegate
{
7
Console
.
WriteLine
(
"delegate!"
);
8
};
9
10
public static void
Main
()
11
{
12
Print
();
13
}
14
}