I have for example:
String invslot_ = "invslot_";
int i = 0;
Now I have a while(i < 44)
loop and I want it
every time it loops to "add" invslot_ and i.
(Yes I could do invslot_ + i
!)
But I want that infslot_ + 1
is recognized as a variable I have defined earlier!
I hope you understand what I mean, please answer if you have an idea.