using System.Data;//添加引用
DataTable dt = new DataTable();
dt.Columns.Add("product_id",typeof(int));
dt.Columns.Add("product_name", typeof(string));
DataRow dr = dt.NewRow();//创建与该表具有相同结构的DATAROW
dr["product_id"]=1;
dr["product_name"]="产品名称";
dt.Rows.Add(dr);
Comments | NOTHING