How to Output DataTable to String Without the Table Header?

just type this in the log:

string.join(Environment.NewLine, yourDataTable.Rows.Cast(of DataRow).Select(function(row) string.Join(“,”,row.itemArray)))

If still appears add .skip(1) before .select

I wish it helps and dont hesitate to mark it as a solution if it works… :slight_smile:

6 Likes