用法
table = new DataTable();
添加列:
table.Columns.Add(new DataColumn() { ColumnName = "ID", DataType = typeof(int) }); DataRow row = new DataRow();
row["ID"] = i;
table.Rows.Add(row);
不支持 row[0],即不能按索引指定列只能用列名.
原文件出处忘记地址了..下载