SHOWcode

2018年9月18日 星期二

在原有的DataTable 中动态怎么样添加一行(C#)

假定你的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);

來源

沒有留言:

張貼留言

Jenkins-mail

參考:http://www.linuxea.com/1767.html 前置作業略過~有空再補 Mailer Plugin post { success { emailext ( subject: &...