I don't expect this to be possible, but it's worth asking.
Let's say, for example, that we have a string like this:
myNum = 30
Is there a way to evaluate that, assuming that myNum is a defined variable? I'm making a developer's console for my program and I've seen things like that done before. Is it possible to convert a string into an action that's run by the program? Of course, the program has already been compiled, which is what makes me think this is impossible. I'm trying to avoid a monstrous Select Case/Switch statement, and instead just process commands in a similar way to the way Visual Studio processes conditional breakpoints.
Thanks for your time.