Command Window - Immediate Mode
Hi folks,
What's up with the VS.NET Command Window's Immediate mode. I lived and breathed by the Immediate window in VS6 but can't get the .NET version to cooperate.
In VS6 I could evaluate expressions in the immediate window as easy as typing:
?Len(str)
18
?LCase(str)
c:\apath\afile.exe
If I try it in VS.NET I get:
?file2
@"C:\Windows\System32\Notepad.exe"
?file2.ToLower()
error: 'file2.ToLower' does not exist
Is there anyway to do this kind of simple expression eveluation using the Immediate mode in VS.NET. Please say YES!!!
Thanks,
Bob
|