Append item to a DataTable using c# syntax

Hi, guys.

I´m trying to append a item into a DataTable using the Assing Activite.
Using the default syntax(VB) on field “to” we have: row.Item(“Value”).
Using C# syntax, i still haven´t foud the correct method to do this.

Could you give me some directions?

Thanks a lot.

Hi @Hercules_Oliveira

If you want to insert in a specific place, Then use dt.Rows.InsertAt(toInsert, index);
Try it out !!

Thanks !!