Reputation: 83
As the title suggests, I'm getting no outup in VS2015 from a line such as :
System.Diagnostics.Debug.WriteLine("***************************************Terst output");
I've checked my Output window is set to display this (debug category).
I've had a many a google. Is there any obvious setting I may be missing? Thanks in advance for your input!
Upvotes: 1
Views: 1475
Reputation: 3623
Make sure you press F5 to Start Debugging mode (not ctrl+F5).
F5 Starting Debugging
ctrl+F5 Starting Without Debugging
Upvotes: 1
Reputation: 53
See related answers:
Why does System.Diagnostics.Debug.WriteLine not work in VS2010 C#
Upvotes: 0