view Trace output OUTSIDE of the ide

  • Thread starter Thread starter Atara
  • Start date Start date
A

Atara

Can I view Trace output when launching a win forms application OUTSIDE
of the ide?
e.g. using switches in the configuration file?

Must I declare a trace listener?

Thanks

Atara.
 
The framework comes with three trace listeners you can attach to: the
default listener that is automatically used, the event log listener that
writes messages to the system event log, and the text writer trace listener
that writes the output to a file.
If you create your own class that inherits from trace listener, you can
redirect the output anywhere you want.

-Rob Teixeira [MVP]
 
Back
Top