I have a DataTable populated with samo data/values and I want to read data from DataTable and pass it to a string variable.
I have this code:
DataTable dr_art_line_2 = ds.Tables["QuantityInIssueUnit"];
I have a countert like this:
for (int i = 1; i <= broj_ds; i++ )
{
QuantityInIssueUnit_value => VALUE FROM DataTable
QuantityInIssueUnit_uom => VALUE FROM DataTable
}
Is this possible or not? If yes then how to pass data from DataTable to those variables?
Thanks!
broj_ds(I mean its "origins")?