sarthemaker
Active member
- Joined
- Sep 4, 2009
- Messages
- 36
- Programming Experience
- 5-10
Is it possible to set the name of a variable to the value of an array? so I have the array:
num(0) = "one"
num(1) = "three"
num(2) = "twenty"
I was hoping that I could do something like this:
dim num(1) as integer = 3
Where it would set the variable three (the value of num(1)) to 3
but it doesn't seem to be working..
num(0) = "one"
num(1) = "three"
num(2) = "twenty"
I was hoping that I could do something like this:
dim num(1) as integer = 3
Where it would set the variable three (the value of num(1)) to 3
but it doesn't seem to be working..