Get Index Row from a DataRow, not a Datatable

Hi @Ionut_Istrate

you transform DataTable into DataRow[] it’s an array of DataRows, if you want to access items in a dataRow[]
you will use the same logic of accessing items in DataTable meaning

YouDataRowArray(0)(0) will give you the first item of the first row.

Regards,
Reda Marzouk

1 Like