//先复制结构
DataTable temp = dt.Clone()
//添加行
for(int i=0;i<dt.Rows.Count;i++)
{
temp.rows.Add(dt.rows[i].ItemArray)
}