Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21

Details



Jay Man What is the difference between trace and debug in asp.net? Answer # The Debug and Trace classes have very similar methods. The primary difference is that calls to the Debug class are typically only included in Debug build and Trace are included in all builds (Debug and Release). You can control this through the compiler flags DEBUG and TRACE.
Related Topics