I'm trying this:
object [,] objArray = MySQLConn.MyRecordSet.GetRows()
string[] NewArray = Enumerable.SelectMany(objArray, 2).ToArray();
To get the 2nd dimension's values in the object array in to a 1D string array - Where do I specify the 2nd dimension?