difference between Trace and Debug ?
Answer Posted / rameez.s
Debug Class provides a set of methods and properties that
help debug your code. If you use methods in the Debug class
to print debugging information and check your logic with
assertions, you can make your code more robust without
impacting the performance and code size of your shipping
product. In Visual Studio 2005 projects, creating a debug
build enables Debug.
You can use the properties and methods in the Trace class to
instrument release builds. Instrumentation allows you to
monitor the health of your application running in real-life
settings. Tracing helps you isolate problems and fix them
without disturbing a running system.
In Visual Studio 2005 projects, Trace is enabled by default
for both release and debug builds, so code is generated for
all trace methods in both release and debug builds.
Therefore, you can use Trace to instrument release builds.
Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
What is the Difference between MVC And MVP design pattrens
What is a runtime version?
Will session work if cookies is disabled?
Why is string called immutable data type?
What is the equivalent of date() and time() in asp.net?
How many types of session state management options available in asp.net?
Explain the difference between asp.net mvc and asp.net webforms? : asp.net mvc
What are the steps to follow to host a web application on a web server?
How many languages are supported by .NET at present time?
Is web config mandatory?
What is the difference between a candidate key and primary key?
What is scope of an application variable in asp.net?
In which event are the controls fully loaded?
What are web beacons used for?
How can you identify that the page is post back?