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);

 

posted on 2014-08-29 10:44  清风暮雨  阅读(1138)  评论(0)    收藏  举报