Is there an easy way to convert a Datatable to a multidimensional string array?
Maybe using LINQ?
LINQ
There\'s gotta be a better way than manually l
yourTable.AsEnumerable().Select(row => row.ItemArray).ToArray()