check that int array contains !=0 value using lambda

Posted by netmajor on Stack Overflow See other posts from Stack Overflow or by netmajor
Published on 2010-05-26T19:24:46Z Indexed on 2010/05/26 19:31 UTC
Read the original article Hit count: 145

hey, I have two-dimension array

 List<List<int>> boardArray

How can I enumerate throw this array to check that it contains other value than 0 ? I think about boardArray.Contains and ForEach ,cause it return bool value but I don't have too much experience with lambda expression :/ Please help :)

© Stack Overflow or respective owner

Related posts about c#

Related posts about lambda-expressions