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
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
gtest-linq-27.cs
blob
e05bb5da4c8069f8f262092b573563e21d782177
1
using
System
;
2
using
System
.
Linq
;
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
string
[]
values
=
new string
[]
{ "1" }
;
9
string
[]
values2
=
new string
[]
{ "Z" }
;
10
11
var
q
=
values
.
Select
(
l
=>
l
).
Select
(
all
=>
12
(
from
b
in
values2
13
let
t
=
""
.
Any
(
_
=>
b
==
"a"
)
14
select
t
));
15
16
foreach
(
var
e
in
q
)
17
{
18
}
19
}
20
}
21