I recently came across this syntax:
var projection = myCollection.Select(static f => f.MyProperty);
and it's the first time I'd seen this static predicate syntax in a Select statement.
That said, I've yet to find any solid documentation on the benefits/drawbacks of this. Can somebody enlighten me?
Thanks!