There are (2) arrays of doubles: sortedLevels[,] and _levels[,] .
The following line of code doesn't compile anymore... it used to!
sortedLevels=_levels.OrderBy(x => x[1]);
The error message is:
Double[,] does not contain a definition for OrderBy and no extension method OrderBy accepting first argument type double [,] could be found. Are you missing a directive or an assembly reference?
Can you please assist? Thank you.

Comment