I\'m looking to slice a two dimensional array in C#.
I have double[2,2] prices and want to retrieve the second row of this array. I\'ve tried prices[1,], but I have
Enumerable.Range(0, 2) .Select(x => prices[1,x]) .ToArray();