我有一个简单的整数列表:
List<int> ints = new List<int>{1,2,3,4,5};
有什么方法可以检查这样的约束:
bool result = ints.ForEach(x=>x > 0);
因此,如果列表中的每个数字都大于 0,则结果为真,如果列表中的任何数字小于 0,则结果为假。
有科吗?
谢谢
使用IEnumerable<T>.All
扩展方法,如果序列的所有元素都满足条件,则返回 true:
List<int> ints = new List<int> { 1, 2, 3, 4, 5 };
bool result = ints.All(x => x > 0); // true if all items are > 0