简体   繁体   中英

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

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.

var cols = values.SelectMany(v=>v.Select(c=>c))

Add one more line:

int[][] values;
....
var rows = from row in values select row;
var cols = rows.SelectMany(x => x);
IEnumerable<IEnumerable<int>> columns = values
  .SelectMany((row, ri) => row
    .Select((x, ci) => new {cell = x, ci, ri}))
  .GroupBy(z => z.ci)
  .Select(g => g.Select(z => z.cell));

Some notes:

  • this doesn't preserve empty space from different sized arrays (remember - jagged).
  • rowindex (ri) isn't used and could be removed.
  • rowindex could be used to generate values for emptyspace if needed

you can also do it like this:

        int[][] values = new int[5][];
        values[0] = new int[5] { 1, 2, 3, 4, 5 };
        values[1] = new int[5] { 1, 2, 3, 4, 5 };
        values[2] = new int[5] { 1, 2, 3, 4, 5 };
        values[3] = new int[5] { 1, 2, 3, 4, 5 };
        values[4] = new int[5] { 1, 2, 3, 4, 5 };

        var rows = from r in values where r[0] == 1 select r[0];

        //two options here for navigating each row or navigating one row

        var rows = from r in values[0] where r == 1 select r;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM