Obtaining the min and max of a two-dimensional array using LINQ

Posted by DanM on Stack Overflow See other posts from Stack Overflow or by DanM
Published on 2010-06-15T21:33:27Z Indexed on 2010/06/15 21:42 UTC
Read the original article Hit count: 284

Filed under:
|
|
|

How would you obtain the min and max of a two-dimensional array using LINQ? And to be clear, I mean the min/max of the all items in the array (not the min/max of a particular dimension).

Or am I just going to have to loop through the old fashioned way?

© Stack Overflow or respective owner

Related posts about c#

Related posts about LINQ