I have been using Visual Studio 2015 Professional for quite some time now, primarily for WPF and Console based apps. Very recently I have noticed that my Console based apps just stopped printing anything to console.
To test this I wrote a very simple console application:
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello!!!");
}
}
When I run the above code, I was expecting the see a black console with the below statements:
Hello!!!
Press any key to continue...
I just see a black console with cursor blinking... nothing else.
My laptop is Windows 7 64 bit and the VS 2015 Pro is 32 bit. I run using "Any CPU" configuration. This issue is driving me nuts!
The interesting thing is, when I run in debug mode all I can see output printing on to console.
How do I get things printing back in console?