Query: Is there built-in support for tracing/logging?
Answers: Yes, in the System.Diagnostics namespace. There are two main classes that
deal with tracing - Debug and Trace. They both work in a similar way - the
difference is that tracing from the Debug class only works in builds that have
the DEBUG symbol defined, whereas tracing from the Trace class only works
in builds that have the TRACE symbol defined. Typically this means that you
should use System.Diagnostics.Trace.WriteLine for tracing that you want to
work in debug and release builds, and System.Diagnostics.Debug.WriteLine
for tracing that you want to work only in debug builds
|