In the VBA immediate window, I can simply type the following at any time:
?Len("Four")
Press enter and get the result:
4
If I try to do that in Visual Studio Express (VB.NET), I get the following result:
The name 'Len' does not exist in the current context
I assume it has to do with VBA being a "scripting" language and VB.Net requiring compilation. I'm just looking for a simple way to evaluate expressions using functions from the built-in libraries.