DataTable 可以创建一张表;
DataTable table = new DataTable("表名");
DataColumncol = new DataColumn();
col.Name = "Name";
//名称
col.Text = "Text";
//列名
table.Columns.Add(col);
DataRow row = table.NewRow();
row["Name"] = "Value"; //值
table.Rows.Add(row);
这样就有了一张表。