I have the following: List<InputRow>which contains several InputRow objects.
I am wondering if there is a way to use the lambda function in my source list to give me a new list where InputRow.someProperty > 1for all objects.
This will leave me with a list of InputRow objects that have someProperty greater than 1.
source
share