why Linq developers has used func<> in places where Predicate was suffice.
for example the where extension method actually takes a func with bool as output
means it takes func but they have given it a name of predicate.
when they could directly take predicate like they have used in Find extension method , why not in where method?
- Find (Predicate
match);

Rajanikant HawaldarPosted Dec 3, 2020, 10:35 AM
Sachin SinghPosted Dec 3, 2020, 10:39 AM