如何编译 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
的可执行文件。
其他编译选项
以上是c#怎麼編譯的詳細內容。更多資訊請關注PHP中文網其他相關文章!