Create datarow for datarow dynamically depending on array length

@jsphbasil

  1. Use for each activity to loop into each elements of the array.
  2. I believe when you say create a datarow, you might need to add it to the datatable. In that case, you can use Add Data Row activity and specify the columns as objects in the ArrayRow property.
    otherwise, if your requirement is only to create a newRow, under DataRow property in Add Data Row activity, type .NewRow => dt.NewRow

Hope this helps! Let me know if you need more elaboration on this.