.Net Debugging & Tracing – Answers of .Net Debugging and Tracing interview questions

When changes are made to the code in an application, the way to be able to view how those changes have changed the way of execution is Break Mode....
Debug statement can only be used in debug mode while trace statement can be used both in debug and released mode.....
You can use trace messages to your project to monitor events in the released version of the application...
The Trace and Debug objects contain a Listeners collection. These Listeners collection collect output from the trace statements....
Trace switches can be configured through application's .config file even after the application is compiled.....