Hopefully this is not a duplicate as I did do a search and found nothing.
At first glance I thought they would behave similarly but no. One is a 2 dimensional array of string and the other is an array of string arrays, i.e. what you get back from (List<string[]>)obj.ToArray().
I know how to return the jagged array type using (List<string[]>)obj.ToArray().
How can I return 2d array using a similar concept, i.e. build up a collection object from other data and call ToArray or other method that will return a 2d array.
Thanks