I am using select query to find matching row from Dt2.
DT_Output = Dt2.Select(“[”+ ABC+“] ='”+ABC+“’ and [”+ Number +“]= '”+Number+“'” ).CopyToDataTable
now i want to take the value of dt_Output in every iteration to new datatable .
Actually DT_Output is placed inside for each loop, and everytime im only getting 1 row in DT_Output that is row(0), in next iteration the new row is being overwritten in the previous row that is row (0). so i want this row to be copied in a new data table.