In C# I would simply do this:
myIEnumerable.Where(i=>i.ReturnsABool()).any();
How wou开发者_Go百科ld I do that in VB.net? I'm stuck on how to formulate the lambda..
Try this
myIEnumerable.Where(Function (i) i.ReturnsABool()).Any()
In C# I would simply do this:
myIEnumerable.Where(i=>i.ReturnsABool()).any();
How wou开发者_Go百科ld I do that in VB.net? I'm stuck on how to formulate the lambda..
Try this
myIEnumerable.Where(Function (i) i.ReturnsABool()).Any()
精彩评论