C#进阶之路——3.C#应用程序编译与执行

C#进阶之路——C#应用程序编译与执行

基础:

使用 Visual Studio 编译和执行 C# 程序:

点击 Run 按钮或者按下 F5 键来运行程序。

如果是窗口程序,则会出现一个命令提示符窗口(Command Prompt window),显示 Hello World。

如果是Web应用程序,则在浏览器网页上显示Hello World。

 

进阶:

使用命令行代替 Visual Studio IDE 来编译 C# 程序:

用编辑器将上述窗口程序代码保存为 helloworld.cs。

打开命令提示符工具,定位到文件所保存的目录。

键入 csc helloworld.cs 并按下 enter 键编译代码。

如果代码没有错误,命令提示符会进入下一行,这时会生成 helloworld.exe 可执行文件。

接下来键入 helloworld 执行程序,“Hello World”则打印在屏幕上。

参考:

https://www.csdn.net/gather_23/NtDakg2sNi1ibG9n.html

posted @ 2019-09-08 13:54  PaulTsao  阅读(310)  评论(0编辑  收藏  举报