How to print to the Debugger output ? - PhilipDaniel |
29-Mar-07 06:50:04
|
Look into System.Diagnostics namespace.
The Debug class allows you to write into a debugging stream, but the
Trace class is more sophisticated - you can turn tracing on and off
and control the levels, output file etc. from your config file.
--
Philip Daniels |
 |
| |
How to print to the Debugger output ? - Zeba |
29-Mar-07 06:55:25
|
Thanks a lot !!! That has saved me a whole lot of headache ! |
 |
| |
How to print to the Debugger output ? - PhilipDaniel |
29-Mar-07 07:17:34
|
I should also have mentioned http://logging.apache.org/log4net/ which
I am just looking into...this may be useful if you have non-trivial
logging requirements.
--
Philip Daniels |
 |
| |
How to print to the Debugger output ? - Zeba |
29-Mar-07 07:56:58
|
Okay .. thanx ! |
 |
| |