Sometime we may need to copy all rows from data row to datatable,in this case use below C# code to achieve
this.
DataRow[] dtRow = dt_employee.Select();//Select records from Datatable and load into DataRow
DataTable Newdt = dtRow.CopyToDataTable<DataRow>(); //CopyToDataTable returns the datatbale that contains
the copy of datarow objects.