I just want know if a \"FindAll\" will be faster than a \"Where\" extentionMethod and why?
Example :
myList.FindAll(item=> item.category == 5); >
I can give some clue, but not sure which one faster. FindAll() is executed right away. Where() is defferred executed.