zoukankan
html css js c++ java
SelectMany
string
[] presidents
=
{
"
Adams
"
,
"
Arthur
"
,
"
Buchanan
"
,
"
Bush
"
,
"
Carter
"
,
"
Cleveland
"
,
"
Clinton
"
,
"
Coolidge
"
,
"
Eisenhower
"
,
"
Fillmore
"
,
"
Ford
"
,
"
Garfield
"
,
"
Grant
"
,
"
Harding
"
,
"
Harrison
"
,
"
Hayes
"
,
"
Hoover
"
,
"
Jackson
"
,
"
Jefferson
"
,
"
Johnson
"
,
"
Kennedy
"
,
"
Lincoln
"
,
"
Madison
"
,
"
McKinley
"
,
"
Monroe
"
,
"
Nixon
"
,
"
Pierce
"
,
"
Polk
"
,
"
Reagan
"
,
"
Roosevelt
"
,
"
Taft
"
,
"
Taylor
"
,
"
Truman
"
,
"
Tyler
"
,
"
Van Buren
"
,
"
Washington
"
,
"
Wilson
"
}
;
IEnumerable
<
char
>
chars
=
presidents.SelectMany(p
=>
p.ToArray());
Employee[] employees
=
Employee.GetEmployeesArray();
EmployeeOptionEntry[] empOptions
=
EmployeeOptionEntry.GetEmployeeOptionEntries();
var employeeOptions
=
employees
.SelectMany(e
=>
empOptions
.Where(eo
=>
eo.id
==
e.id)
.Select(eo
=>
new
{
id
=
eo.id,
optionsCount
=
eo.optionsCount }
));
foreach
(var item
in
employeeOptions)
Console.WriteLine(item);
查看全文
相关阅读:
Acdream 1174 Sum 暴力
Acdream 1114 Number theory 莫比乌斯反演
Acdream 1007 快速幂,模乘法
UVa 10023
UVa 11027
UVa 11029
UVa 10820
UVa 10791
UVa 11121
UVa 106
原文地址:https://www.cnblogs.com/anders06/p/1516805.html
最新文章
P4126 [AHOI2009]最小割 (SCC+网络流)
表达式树
自己风格的文件内容
关于循环赋值、memset与fill的效率测试
DLX专题总结
整数二分答案模板
搜索专题总结
数论模板
windows程序设计-课程设计
树状数组专题(搬运
热门文章
各种预处理命令 笔记 #if #else #elif #define #undef
CF 501B Misha and Changing Handles (map & set)
UVA 10474 Where is the Marble
POJ 1088 滑雪 (深搜+DP)
POJ 3414 Pots
HDU 1029 Ignatius and the Princess IV (数据结构)
HDU 1022 Train Problem I
HDU 1263 水果
数塔 HDU 2084
A Count Task HDU 6480
Copyright © 2011-2022 走看看