I think my question says it all. Why Find methods are absent in Enumerable<> while present in List<>. If they were there it would have reduced the burden of writing large LINQ Queries to find something from Enumerable<>. I know i can change the Enumerable to List using .ToList() but that would be a hack.
I think my question says it all. Why Find methods are absent in Enumerable<>
Share
The Enumerable.FirstOrDefault<TSource> Extension Method does exactly the same as the List<T>.Find Method.