标签:
1 DataTable dt = ds.Table[0]; 2 if (dt != null && dt.Rows.Count > 0) 3 { 4 foreach (DataRow dr in dt.Rows) 5 { 6 dr["列名"]="你的值"; 7 } 8 }
遍历DataTable
原文地址:http://www.cnblogs.com/aoun/p/4215482.html