C# – Write Text to Debug Output Window of Visual Studio
To write text to debug output window, we simply use Write
and WriteLine
methods of the Debug
class that help us debug code.
System.Diagnostics.Debug.WriteLine("output text");
Open Output window in Visual Studio: View => Output.