No console output vs2008
-
I upgraded to vs2008. If I create a new program, it's OK, but the program I converted from VS2005 doesn't create any output from a console.writeline. What am I missing? ty
-
I upgraded to vs2008. If I create a new program, it's OK, but the program I converted from VS2005 doesn't create any output from a console.writeline. What am I missing? ty
Unless you add special code to an app, the output from Console.WriteLine should go: 1. to the "output pane" when running inside Visual Studio 2. to a separate window (a "DOS console") otherwise Which is it that doesn't work? :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages
-
Unless you add special code to an app, the output from Console.WriteLine should go: 1. to the "output pane" when running inside Visual Studio 2. to a separate window (a "DOS console") otherwise Which is it that doesn't work? :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages
Doesn't show in the output pane (Show output from: debug)
-
Doesn't show in the output pane (Show output from: debug)
debug output only shows in a debug build warning: there probably even is a "debug" checkbox which you could uncheck if you don't find the configuration manager, look for Tools/Options and: - check "show all options" - project and solutions: check "show advanced build options" :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages