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
/
gtest-lambda-17.cs
blob
044b9a3cb3e24dbdd9b98064459171f7a4e30204
1
using
System
;
2
3
class
TestCase
4
{
5
string
a
;
6
string
b
;
7
string
c
;
8
9
public void
Testing
()
10
{
11
string
z
=
a
+
b
+
"blah1"
+
c
+
"blah2"
;
12
Action test
= () => {
13
string
x
=
a
;
14
};
15
test
();
16
}
17
18
public static void
Main
()
19
{
20
new
TestCase
().
Testing
();
21
}
22
}