I have a variable name stored in a string as:
string var = "xyz"; //xyz will be different based on fucntion call

but each of these "xyz" are indeed variables. So, I have:
xyz = 1;
abc = 13.5;
etc.

So, you can see that they can be an int or double.
How do I use the stored string in 'var' to access the variables?

Thanks