C# (Sharp) Programming Language Question:
What is the difference between the Debug class and Trace class?
Answer:
Documentation looks the same. Use Debug class for debug builds, use Trace class for both debug and release builds.
Previous Question | Next Question |
What does assert() method do? | How do you debug an ASP.NET Web application? |