我有 1 个数据集和 4 个数据表。那么如何计算这些数据表的每一行呢?
DataTable[] ret =
{
new DataTable(),
new DataTable(),
new DataTable(),
new DataTable()
};
for (int i = 0; i < 4; i++)
{
DataTable table = new DataTable();
table.Columns.Add("Delivery Date", typeof (string));
table.Columns.Add("Ord.Qty", typeof (string));
table.Columns.Add("Balance", typeof (string));
ret[i] = table;
}
这 1 是计算 4 个数据表的总行。
int rowCount = ds.Tables[0].Rows.Count;