Let me tell my problem.There are list of parameters in a list box. User can select any number of Parameters (Maximum Limit is 10). Now I want to create dynamic arrays for all the parameters. Suppose the user selects 3 parameters,
the name of the dynamic arrays would be like this,
Byte Parameter_1[]
Byte Parameter_2[]
Byte Parameter_3[]
for(int i=1;i<=3;i++)
{
Byte Parameter_+i+[];
}
I tried this.But it doesn't work...
How to create these arrays dynamically in a single statement.
Here 1,2,3 are looping variables.
Plz give be suggestions.... ..
the name of the dynamic arrays would be like this,
Byte Parameter_1[]
Byte Parameter_2[]
Byte Parameter_3[]
for(int i=1;i<=3;i++)
{
Byte Parameter_+i+[];
}
I tried this.But it doesn't work...
How to create these arrays dynamically in a single statement.
Here 1,2,3 are looping variables.
Plz give be suggestions.... ..
Comment