How does C# copy a column name from a dataTable to another dataTable?

Copy only the column name, not the data under the column:

var newDt = new DataTable(); newDt = oldDataTable.Clone(); // The cloned structure dataTable includes all the dataTable schemas and constraints.

This article from the
Muzhuang Internet blog>
How does C# copy a column name from a dataTable to another dataTable