FoxPro have the operator & ("macro substitution"), which is very powerful. How can I obtain the same functionality in VB?

FoxPro example:
STORE "3+4" TO varX
varY = &varX
(in that way, varY will contain 7)

VB example:
????

Thanks in advance.