I have a 2d array of strings
string [] [] myArray;
and I want to sort it by one of the columns.
So the data might be
{
var myOrderedRows = myArray.OrderBy(row => row[columnIndex]);