Is there something more we are supposed to get out of this post than just the answer?
I’m sorry, I should have added a description.
I posted it because I didn’t realize how LINQ+lambdas could make your C# programs more functional, and I also didn’t know that the select method could be used for more than list.select(a, a => a.prop == 'blah').
select
list.select(a, a => a.prop == 'blah')
Is there something more we are supposed to get out of this post than just the answer?
I’m sorry, I should have added a description.
I posted it because I didn’t realize how LINQ+lambdas could make your C# programs more functional, and I also didn’t know that the
selectmethod could be used for more thanlist.select(a, a => a.prop == 'blah').