C# (Sharp) Programming Language Question:

What is the difference between the Debug class and Trace class?

C# (Sharp) Programming Language Interview Question
C# (Sharp) Programming Language Interview Question

Answer:

Documentation looks the same. Use Debug class for debug builds, use Trace class for both debug and release builds.


Previous QuestionNext Question
What does assert() method do?How do you debug an ASP.NET Web application?