If I have variable1, variable2 and variable 3. Is there anyway to get that variable with i?
Such as getting variablei , where i = 1.
Following code I think illustrates what I am talking about.
ArrayList networkSetupData = new ArrayList(count);
for(int i =0 ; i != count ; count--)
{
networkSetupData.add(dropDown[i]);
}
Thank you in advance.