DataTable dt = new DataTable(); dt.Columns.Add("SN", typeof(string)); DataRow dr = dt.NewRow(); dr["SN"] = "11111"; dt.Rows.Add(dr);