How debug and trace classes are different.

  • Thread starter Thread starter Bhuwan Bhaskar
  • Start date Start date
Bhuwan Bhaskar pretended :
Hi,

How debug and trace classes are different.

Thanks n regrards,
Bhuwan

Calls to Debug.Write (etc) are ignored when the application is built in
Release mode. Calls to Trace.Write happen in both Debug and Release
mode.
That is, if you didn't change the default settings. (Build tab of
project properties, DEBUG and TRACE constants)

Hans Kesting
 
Back
Top