8 var enumerable
= new string[] { "aba", "bbb", "bab", "aaa" }
.
9 Select((values
) => new { values = values, length = values.Length }
).
10 Select((ti0
) => ti0
.values
.Select ((type
) => new { type = type, x = 9 }
).Where((ti1
) => (ti0
.length
== 3)).
11 Select((ti1
) => ti1
.type
));
14 public static int Main ()
16 var e
= from values
in new [] { "aba", "bbb", "bab", "aaa" }
17 where values
.Length
> 0
18 select from type
in values
24 foreach (var vv
in v
) {
26 Console
.WriteLine (vv
);
33 e
= from values
in new [] { "aba", "bbb", "bab", "aaa" }
34 let length
= values
.Length
35 select from type
in values
41 foreach (var vv
in v
) {
43 Console
.WriteLine (vv
);