DataTable dt = new DataTable();DataColumn name = new DataColumn("EmpName", typeof(string));dt.Columns.Add(name);
Login to post response