I am trying to write a message to the output window for debugging purposes. I searched for a function like Java's system.out.println("")
. I tried Debug.Write
, Console.Write
, and Trace.Write
. It does not give an error, but it does not print anything either.
"Define DEBUG constant" and "Define TRACE constant" options are checked.
Menu Tools → Options → Debugging → "Redirect all Output Window text to the Immediate Window" option is not checked.
Configuration: Active (Debug)
Note: I created a project with the wizard as "Windows Forms Application" if relevant. I have no idea where to look.
To display the Output window whenever you build a project, in the Options dialog box, on the Projects and Solutions > General page, select Show Output window when build starts.
Go to Tools, Options, Projects And Solutions, and uncheck Show Output Window when Build Starts.
Add the System.Diagnostics
namespace, and then you can use Debug.WriteLine()
to quickly print a message to the output window of the IDE. For more details, please refer to these:
This will write to the debug output window:
using System.Diagnostics; Debug.WriteLine("Send to debug output.");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With