No satisfactory answers provided.
System.Diagnostics.Debug.WriteLine()
will write messages to the Output:debug window, but so much crap is constantly dumped into that window by every process under the sun, it is like finding a needle in a haystack to find YOUR messages.
Console.WriteLine()
does not write to any window in Visual Studio. I guess it will only write to the application console if your application creates a console in the first place, i.e. if it is a Console application.
Why is the tooling making the simple task of having your web application server side code .cs code write some debug messages into a window which is swamped with crap making it almost impossible to find your information?
Leif
said it disappears before you can see it. UseConsole.ReadKey()
– Xaqron