Hey!
I want to convert the name of a variable to a string, not the variable it stores!
for example:
public string Istorehello;
public string hello;
now I want to set the variable “hello” to a string, (not the value),
so that we would get following:
void Update()
{
Istorehello = “hello”;
}
My problem is that I just know how to handle here with the value of that string, not with itselve…
Thanks for each answer!