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-45.cs
blob
ba7f33e7f99122451108848c0d9bb68d2a01b34a
1
using
System
;
2
3
public class
C
4
{
5
public static int
Main
()
6
{
7
new
C
().
AnyMethod
<
int
> ();
8
return
0
;
9
}
10
11
public void
AnyMethod
<
T
> ()
12
{
13
Action outerAction
= () => {
14
string
aString
=
"aString"
;
15
Action
<
string
>
innerAction
=
innerActionParam
=>
innerActionParam
.
Contains
(
aString
);
16
};
17
18
outerAction
();
19
}
20
}