//更改列名dt.Columns["原来的列名"].ColumnName="新的列名";//移除列dt.Columns.Remove("列名");//添加列dt.Columns.Add("列名",typeof(int));