how to see the console programm output in vs, WPF
I've got some Console.writeLine stuff but I can't find the console where it is displayed ! thx for any help
3 Replies
You normally don't use console in wpf apps. You could use
Debug.WriteLine
instead, and see it in the debug window of VSI personally liked using Trace from
System.Diagnostics
. . .okay thx