I have a List<int> and need to count how many elements with (value < 5) it has - how do I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Unlike other answers, this does it in one method call using this overload of the count extension method:
Note that since linq extension methods are defined in the See also: Extension methods defined by the |
|||||||||||||
|
|
The shortest option:
This would also do:
|
|||||
|
|
Try -
|
|||
|
|
|
||||
|
|
Where. – Oded♦ Nov 26 '11 at 18:28