Converting iEnumerable to DataRow

Hi, how do I convert type iEnumerable<Object> to Datarow?

I am using Excel Read Row activity

so far the previous answers were about Datarow to iEnumerable

hi @DEATHFISH

use for each for collection to iterate the Ienumerable object and use add data row activity to add the rows to your data table

Regards
Ajay

Hi, since I am using REFramework I am using Read Data Row to process the transactions one by one. Therefore preferably I would like to convert the iEnumerables directly to DataRow objects and work on them one by one instead of adding them to a DataTable

Any help?

Main problem is that when I retrieve the iEnumerable object from the Excel Read Row activity, the information about each Column Name is gone

Any luck on above?