Is there a quick and dirty way to dump the contents of a System.Data.DataTable file into a text file or some "thing" for debugging purposes?
DataTable.WriteXml(string) will write it to a file ...
DataTable.WriteXml(string)
myDataTable.WriteXml(filename);
It may not be as compact as you might wish, but it will have the necessary information ...