本文介绍了为什么Console.Writeline,Console.Write在Visual Studio Express中不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我只是打开一个控制台应用程序,然后输入
I just open a console application and I type
Console.WriteLine("Test");
但是输出窗口没有显示此内容.我用Ctrl + W,O转到输出窗口
But the output window doesn't show this. I go to the output window with Ctrl+W,O
但是当我运行程序时什么都没显示出来,是我疯了还是在Visual Studio 2010 Express中不支持?
But nothing shows up when I run my program, am I nuts or is this not supported in the visual studio 2010 express?
推荐答案
Console.WriteLine
将输出写入由应用程序打开的控制台窗口(以黑色的窗口显示白色文本,当您打开命令提示符时显示).尝试 System.Diagnostics.Debug.WriteLine
代替.
这篇关于为什么Console.Writeline,Console.Write在Visual Studio Express中不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!