GENERIC NAME OF PARAMETER
Hello,
I would like to declare a variable number of parameters and the solution I've found is to make the name of my parameters generic
For exemple when I want n parameters I would like to do this:
int i=0;
String var+i="value1"; (> var+i in this step would be : var0
i++;
String var+i="value2"; (> var+i in this step would be : var1
.
...
i++;
String var+i="valuen"(> var+i in this step would be : varn
Thank you for your help.
F.S

