hello all,
does anyone know if their exists something like the evel function in .net.
the problem is that i want to set a variable value that i dont know its name at design time
ex:
let's say i have a set of variables str1_1, str1_2, str1_3, etc...
i want to set them all in a single for loop
for i=1 to 20
somefunction("str1_" & i) = "somevalue" & i
next
in javascript the function is eval
is there a way to do that in .net?