|
3 |
edited tags
|
||
|
2 |
|
||
|
1 |
|
||
C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections.I am prototyping some C# 3 collection filters and came across this. I have a collection of products:
Now if I use LINQ to filter it works as expected:
And if I use the Where extension method combined with a Lambda the filter works as well:
Question: What is the difference, and why use one over the other?
|
||||
