- declare new DataRow variable e.g. “newRow”
- initialize “newRow” to be a new row of your datatable by assining dt.NewRow to “newRow” variable
- assign values to newRow variable e.g. newRow(“Name”) = “test”
- after all the values are assigned, use “Add Data Row” activity, fill in dataRow and dataTable properties. (Note - you can use ArrayRow property by passing in newRow.ItemArray)
4 Likes