B
bill salkin
I have two arrays, say
inp1(0) = "Cat" inp2(0) = 3
inp1(1) = "Dog" inp2(1) = 4
I want to use them to create a new variable with part of
the string name coming from inp1 and the corresponding
value coming from inp2. For example, here are the VB.NET
string variables I want to create from the above arrays:
strCat = 3 (note that "Cat" is inp1(0) the the value of 3
is inp2(0))
strDog = 4
Any ideas how to do this?
TIA,
Bill
inp1(0) = "Cat" inp2(0) = 3
inp1(1) = "Dog" inp2(1) = 4
I want to use them to create a new variable with part of
the string name coming from inp1 and the corresponding
value coming from inp2. For example, here are the VB.NET
string variables I want to create from the above arrays:
strCat = 3 (note that "Cat" is inp1(0) the the value of 3
is inp2(0))
strDog = 4
Any ideas how to do this?
TIA,
Bill