Remember the Debug.Print statement from VB 6.0, where your program could print stuff to the Immediate window? What happened to it in VB.net; what is it called now?
Printable View
Remember the Debug.Print statement from VB 6.0, where your program could print stuff to the Immediate window? What happened to it in VB.net; what is it called now?
:)VB Code:
Console.WriteLine("some stuff!")
That isnt working at all. Maybe I'm doing something wrong, or maybe I'm not looking in the right window. I don't know.
VB Code:
Debug.WriteLine("foo")
or even more useful
VB Code:
Trace.WriteLine("foo")
The former will output the text in Debug mode - the latter will output text to any "TraceListner" even from a compiled executable...