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-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-anon-8.cs
blob
5712fb9d8fb7b624aeee53a02c45b4717e1b62e3
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
4
delegate int
Foo
();
5
6
class
X
7
{
8
static void
Main
()
9
{
10
Test
(
"Hello World"
,
8
);
11
}
12
13
public static void
Test
<
R
> (
R r
,
int
a
)
14
{
15
for
(
int
b
=
a
;
b
>
0
;
b
--) {
16
R s
=
r
;
17
Foo foo
=
delegate
{
18
Console
.
WriteLine
(
b
);
19
Console
.
WriteLine
(
s
);
20
return
3
;
21
};
22
a
-=
foo
();
23
}
24
}
25
}