1
我有一個列表如何使用Linq將列表集合添加到列表中?
List<List<Employee>> EmployeeListCollection;
,並希望
List<Employee> EmployeeList=//all employee in EmployeeListCollection
什麼是查詢?
我有一個列表如何使用Linq將列表集合添加到列表中?
List<List<Employee>> EmployeeListCollection;
,並希望
List<Employee> EmployeeList=//all employee in EmployeeListCollection
什麼是查詢?
List<Employee> EmployeeList = EmployeeListCollection.SelectMany(c => c).ToList();
試試這個:
List<List<Employee>> EmployeeListCollection;
List<Employee> EmployeeList;
foreach(var emplst in EmployeeListCollection)
{
foreach(var emp in emplst)
{
EmployeeList.add(emp);
}
}
你的問題是模糊的,你能解釋一下你需要什麼??? – IamStalker 2012-08-07 07:19:36
對不起,我英語真的很差,所以我通常會在我有問題時試着給我提供樣品,而且我認爲這個樣品很明確,而且你看到別人明白我的意思了! – 2012-08-07 07:39:38