0

我有一个简单的整数列表:

List<int> ints = new List<int>{1,2,3,4,5};

有什么方法可以检查这样的约束:

bool result = ints.ForEach(x=>x > 0);

因此,如果列表中的每个数字都大于 0,则结​​果为真,如果列表中的任何数字小于 0,则结​​果为假。

有科吗?

谢谢

4

1 回答 1

1

使用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
于 2013-09-06T10:15:27.287 回答