I want to loop over a list of objects and check a boolean value until all are true then return.
Is this possible with Linq??
In other words:
List of < obj {1, true}, obj {1, false}, obj {1, false}, obj {1, false} >
but the bool is being updated by something else and I want to check the bool until all are true then return control.
How to do with linq?
Thanks!