//for example already you got data in the dt table copy that data to dtcpy dattable using below codeDataTable dtcpy = new DataTable();dtcpy = dt;//Another waydtcpy = dt.Copy();