假定你的datatable名为tblDatas,有Product、Version、Description三个字段
DataTable tblDatas = nowtable;
DataRow newRow;
newRow = tblDatas.NewRow();
newRow["Product"] = "水果刀";
newRow["Version"] = "2.0";
newRow["Description"] = "打架专用";
tblDatas.Rows.Add(newRow);
來源
沒有留言:
張貼留言