c# datarow[] 转换成 datatable
Posted 成小伟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# datarow[] 转换成 datatable相关的知识,希望对你有一定的参考价值。
private DataTable ToDataTable(DataRow[] rows)
{
if (rows == null || rows.Length == 0) return null;
DataTable tmp = rows[0].Table.Clone(); // 复制DataRow的表结构
foreach (DataRow row in rows)
{
tmp.ImportRow(row); // 将DataRow添加到DataTable中
}
return tmp;
}
以上是关于c# datarow[] 转换成 datatable的主要内容,如果未能解决你的问题,请参考以下文章