ds.Tables[].Columns.Add("short_name", System.Type.GetType("System.String"));//直接为表创建一新列 foreach (DataRow dr in ds.Tables[].Rows)//将新列分别递归添加到对应的行中
{ dr["short_name"] = "helloword"; }
ds.Tables[].Columns.Add("short_name", System.Type.GetType("System.String"));//直接为表创建一新列 foreach (DataRow dr in ds.Tables[].Rows)//将新列分别递归添加到对应的行中
{ dr["short_name"] = "helloword"; }