1.用DataRow.ItemArray DataTable t=new DataTable(); DataRow r=t.NewRow(); r.ItemArray=oldRow.ItemArray; t.Rows.Add(r); 2.用DataTable.ImportRow() t.ImportRow(oldRow);