I want to create a new DataTable that has the same columns as another DataTable.
Currently, I do the following:
DataTable myTable = new DataTable();
Use the Clone method - it creates a copy of the schema (columns) only. See DataTable.Clone