如何编译 C# 代码
如何编译 C# 代码?
要在 Windows 上编译 C# 代码,您可以使用 Visual Studio 或 .NET CLI 工具包。
使用 Visual Studio 编译 C# 代码
<code class="c#">using System; namespace HelloWorld { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); Console.ReadKey(); } } }</code>
使用 .NET CLI 工具包编译 C# 代码
<code>csc HelloWorld.cs</code>
这将生成一个名为 HelloWorld.exe
的可执行文件。
其他编译选项
The above is the detailed content of How to compile c#. For more information, please follow other related articles on the PHP Chinese website!