临摹微笑
Demo:
//这一部分是你内存中的DataTable
DataTable dt = new DataTable();
dt.Columns.Add("姓名");
dt.Columns.Add("金额",typeof(int));
dt.Rows.Add("张", 30);
dt.Rows.Add("王", 30);
dt.Rows.Add("李", 30);
dt.Rows.Add("赵", 30);
dt.Rows.Add("钱", 30);
//添加统计列
dt.Columns.Add("金额总计", typeof(int));
var sum = 0;
foreach (DataRow row in dt.Rows)
{
sum += Int32.Parse(row["金额"].ToString());
row["金额总计"] = sum;
}