In LoadRunner, given a parameter table stored in a file MyTable.dat
and a VUGEN script written in C#:
FirstHeader,SecondHeader,ThirdHeader
1A,1B,1C
2A,2B,2C
3A,3B,3C
I can use lr.eval_string("{MyTable}");
to return a whole row:
1A,1B,1C
I can use lr.next_row("MyTable.dat");
to advance to the next row
2A,2B,2C
However, it's not clear how to select an individual column.
The function reference for scripts written in C states that you can use lr_paramarr_idx
for parameter arrays - but that doesn't appear to be available in C# & it doesn't make clear if a table row counts as a parameter array.
HP VUGen version 9.52.0.0.