- 666 名前:デフォルトの名無しさん mailto:sage [2008/08/05(火) 23:37:27 ]
- >>665
その例だと listX.SelectMany(x => listY, (x y) => x * y) こうなるけど、例としては不十分な気がする これくらいにしないと from x in listX from y in listY where x > y select x * y; listX.SelectMany(x => listY, (x, y) => new { x, y }) .Where(z => z.x > z.y) .Select(z => z.x * z.y); あと、let入るとさらに面倒になるな
|

|