How can I use linq to select the columns of a jagged array

Posted by CoGo on Stack Overflow See other posts from Stack Overflow or by CoGo
Published on 2010-06-16T18:54:28Z Indexed on 2010/06/16 19:22 UTC
Read the original article Hit count: 138

Filed under:
|

How can I use linq in C# to select the columns of a jagged array of ints, I select the rows as follows.

int[][] values;
....
var rows = from row in values select row;

Thank you for the help.

© Stack Overflow or respective owner

Related posts about c#

Related posts about LINQ