5
이미 데이터가 포함 된 데이터 테이블에 새 열과 데이터를 추가하려면 어떻게해야합니까?
이미 데이터가 포함 DataColumn된 DataTable개체에 새 항목 을 추가하려면 어떻게합니까 ? 의사 코드 //call SQL helper class to get initial data DataTable dt = sql.ExecuteDataTable("sp_MyProc"); dt.Columns.Add("NewColumn", type(System.Int32)); foreach(DataRow row in dr.Rows) { //need to set value to NewColumn column }