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
Copyright © 2011-2022 走看看