Is there an easy way to move a Multidimension string array (string [][])
into a DataTable?
I tried:
ru.employerList is a string[][].
DataTable testTable;
testTable = ArrayToDataTable(ru.employerList);
This gives me an error:
The name 'ArrayToDataTable' does not exist in the class or namespace
'integration.WebForm1'
I have System.Data defined.
Thanks,
Tom