Console.WriteLine output

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If I have Console.WriteLine in a VB .NET application when I complie the app
and run the exe, do they occur? If so where does the output go. If not is the
a easy way to push them to a log file.
Ron
 
Hello Ron,

To see the message when you run the app from the exe you could use the
debugger app from www.sysinternals.com. it's free.
Otherwise you could use the Trace class and add listeners to it. then you
can put tracing on and off and choose where you want to see the traces.

greetz,
gert
 
Back
Top