Omni
|
Is there a way to dynamically create new variables in the global namespace by setting them?
string NewVariable(string name, int value)
{
SetInt(name, value);
return name;
}
EDIT: Er, no, I'm afraid this doesn't work...though it doesn't return an error.
Posted on 2004-08-26 17:03:20 (last edited on 2004-08-26 17:31:13)
|