repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
gtest-linq-21.cs
blob
28ae921fe4de96ca5d4ac12fff641d865dce4183
1
using
System
;
2
using
System
.
Linq
;
3
4
static class
Program
5
{
6
public static int
Main
()
7
{
8
int
i
=
0
;
9
var
input
=
new int
[]
{ 1 }
;
10
var
input2
=
new int
[]
{ 5 }
;
11
var
r
=
12
from
_
in
input
13
from
y
in
input2
14
select
(
Action
)(() =>
Console
.
WriteLine
(
"
{0} {1} {2}
"
,
i
,
_
,
y
));
15
16
r
.
ToList
() [
0
] ();
17
return
0
;
18
}
19
}
20