You can use Enumerable.Any it will find satisfy the condition on first match. As Habib rightly said better to use Any as Enumerable.All would return true for an Empty list of bool.
!lst.Any(c=> c == true);
OR use Enumerable.All
lst.All(c=> c == false);