I have a List with lots of values. What is the most efficient way to check if every single item in the list equals false?
List
false
You can use LINQ's All method:
LINQ's
All
list.All(x => x == false);
This will return false immediately if it finds a value that equals to true.
true