修改数据集中的数据

Code

//注意如何给DataTable添加新行

DataRow newRow=dt.NewRow();//调用方法

.......

dt.Rows.Add(newRow);

你可能感兴趣的:(数据)