This is something I'm probably missing by an inch, but it's eluded me so
far....is there an equivalent in VS .Net to the Visual Basic immediate
window, where I can investigate my variables, by typing something along the
lines of "? myStringReader.ToString()" and seeing the output in the console
or VS command window?
I *think* the command window is where I need to look, but I'm not
sure.....thanks for the help.
Lau Lei Cheong - 29 Oct 2004 03:09 GMT
Yes. You can use Command window to type can check the result of functions.
And the usage is excatly what you stated.
For variables, it'll be more convinent to add "watch" to them. So I can just
press "F10" or "F11" and see how they change as the program executes. :)
> This is something I'm probably missing by an inch, but it's eluded me so
> far....is there an equivalent in VS .Net to the Visual Basic immediate
[quoted text clipped - 4 lines]
> I *think* the command window is where I need to look, but I'm not
> sure.....thanks for the help.