Live Chat Icon For mobile
Live Chat Icon

In a debug build, how do I write debug information to the output window (similar to the TRACE macro from VC6)

Platform: WinForms| Category: Debugging

You can use the Console.Write and Console.WriteLine methods from within a Windows Forms project to do this. The class DefaultTraceListener is used to implement this functionality.
When your application is launched from the VS.NET IDE in Debug mode, you will see all trace and debug messages in the Output window by calling:


System.Diagnostics.Trace.WriteLine()
or
System.Diagnostics.Debug.WriteLine()

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.