Use Clone method to copy the table structure (Schema) DataTable dtProductCopy = new DataTable(); dtProductCopy = dtProduct.Clone(); Use the ImportRow method to copy from...
↧