What is the difference between Where and FindAll? [closed]
- by Matthew
Possible Duplicate:
FindAll vs Where extension-method
IEnumerable has two extension methods, Where and FindAll. Both seem to take a Predicate, and return an IEnumerable of the matching elements in the original IEnumerable. So what is the difference between them?