Debug class and trace class in c#
What is difference b/w debug class and trace class.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Niravkumar VaghelaPosted Jul 27, 2012, 3:00 AM
Hi Sharad,
The main difference is the one you indicate: Debug is not included in release, while Trace is.
The intended difference is that development teams might use Debug to emit rich, descriptive messages that might prove too detailed (or revealing) for the consumer(s) of a product, while Trace is intended to emit the kinds of messages that are more specifically geared toward instrumenting an application.
Above answer is from:
http://stackoverflow.com/questions/179868/trace-vs-debug-in-net-bcl
Niravkumar VaghelaPosted Jul 27, 2012, 12:58 AM
You can visit following link:
http://support.microsoft.com/kb/815788
Hope this will help you...