摘要: #region 封装DataTable DataTable dt = null; if (newRows.Length > 0) { dt = newRows[0].Table.Clone(); // 复制DataRow的表结构 foreach (DataRow row in rows) { dt.Rows.Add(row.ItemArray); // 将DataRow添加... 阅读全文
posted @ 2013-10-31 14:51 左正 阅读(1066) 评论(0) 推荐(0)