I am new to C# and downloaded the free version of Microsoft Visual Studio 2015. To write a first program, I created a Windows Forms Application. Now I use Console.Out.WriteLine()
to print some test data. But where can I read the console?
答案 0 :(得分:57)
The simple way is using System.Diagnostics.Debug.WriteLine()
Your can then read what you're writing to the output by clicking the menu "DEBUG" -> "Windows" -> "Output".
答案 1 :(得分:10)
in the "Ouput Window". you can usually do CTRL-ALT-O to make it visible. Or through menus using View->Output.
答案 2 :(得分:10)
答案 3 :(得分:1)
可能发生的情况是您的控制台在关闭之前才有机会看到输出。我会在您的Console.ReadLine();
之后添加Console.WriteLine("Hello World");
,以便您的代码看起来像这样:
static void Main(string[] args)
{
Console.WriteLine("Hello World");
Console.ReadLine();
}
这样,控制台将在下方显示“ Hello World”和一个闪烁的光标。 Console.ReadLine();
是此处的键,程序在关闭控制台窗口之前会等待用户输入。
答案 4 :(得分:1)
答案 5 :(得分:-1)
如果要从控制台读取一些输入,则应使用Console.ReadLine()。
要查看在控制台中运行的代码,请执行以下操作:
在解决方案资源管理器(从菜单中查看-解决方案资源管理器)中,右键单击您的项目,在文件资源管理器中选择打开文件夹,以找到您的项目路径。
假设路径为C:\ code \ myProj。
在Windows中打开命令提示符应用。
更改为您的文件夹路径。 cd C:\ code \ myProj
转到调试文件夹,您可以在其中找到程序可执行文件。 cd bin \ debug
运行程序可执行文件,它应以.exe扩展名结尾。
示例:
myproj.exe
您应该看到在Console.Out.WriteLine()中输出的内容。