Hacker News new | ask | show | jobs
by logicalmind 5877 days ago
I'm not sure if you find it easier to read, but this is analogous:

  var developerNames = from emp in employees.AsParallel().AsOrdered()
                       where emp.Role == Role.Developer
                       orderby emp.LastName
                       select emp.FullName;
1 comments

Nope, if anything that's worse. But thanks, interesting to see another example.