If you have an array like string[][], what's the smartest way to convert it to a regular multidimensional array like string[,] assuming the former array is rectangular (not jagged)?
The only approach I can think of is to get the dimensions, declare a multidimensional array with those dimensions, then loop through the source array and populate the new array. But I was wondering if there were any simpler solutions.