摘要: 手动构造一个DataTable: 1 DataTable dt = new DataTable(); 2 dt.Columns.Add("ID", typeof(string)); 3 dt.Columns.Add("Name", typeof(string)); 4 DataRow _Row1 = dt.NewRow(); 5 _Row1["ID"] = "1"; 6 _Row1["Name"] = "... 阅读全文
posted @ 2014-01-08 21:51 F_wes 阅读(415) 评论(0) 推荐(0) 编辑