[csharp] using System; class Program { public static void Main() { Console.WriteLine("HelloWorld."); } } 首先要安裝好.NET Framework SDK環境,在開始按鈕所有程序VS菜單下打開命令提示工具,把以上代碼存在其根目錄下,命令為 hello.cs ,然後在CMD下輸入:csc hello.cs,即可成功編譯。 CSC.exe把Visual C#程序代碼編譯成IL文件時,有著很多參數和開關選項。 命令行示例 編譯 File.cs 以產生 File.exe: csc File.cs 編譯 File.cs 以產生 File.dll: csc /target:library File.cs 編譯 File.cs 並創建 My.exe: csc /out:My.exe File.cs 通過使用優化和定義 DEBUG 符號,編譯當前目錄中所有的 C# 文件。輸出為 File2.exe: csc /define:DEBUG /optimize /out:File2.exe *.cs 編譯當前目錄中所有的 C# 文件,以產生 File2.dll 的調試版本。不顯示任何徽標和警告: csc /target:library /out:File2.dll /warn:0 /nologo /debug *.cs 將當前目錄中所有的 C# 文件編譯為 Something.xyz(一個 DLL): csc /target:library /out:Something.xyz *.cs