|
|
|
|
|
by foepys
1674 days ago
|
|
LINQ is parsing a tree of System.Linq.Expression here and the cases of First(pred) etc. are just not optimized because of the added complexity with little benefit. It only recently became a problem when Visual Studio got a new built-in analyzer that tells people to "optimize" this. |
|
The difference, as @sbelskie already mentioned, is that Where has an optimization for List, while First only uses the naive enumerator.