有時候想實驗個C#代碼中的小特性,不得不打開VisualStudio,但這實在是太重量級了,如果電腦性能一般的話,光打開VS就得等半天,這裡我們可以使用notepad++來運行 在notepad++中新建文件hello.cs,F5運行,配置命令行 [plain] cmd /K C:\windows\Microsoft.NET\Framework\v4.0.30319\csc.exe /t:exe /out:$(FULL_CURRENT_PATH).exe $(FULL_CURRENT_PATH) && $(FULL_CURRENT_PATH).exe 文件內容如下: [csharp] using System; public class Program{ static void Main(){ Console.WriteLine("hello c#"); } } 輸出 [plain] www.2cto.com Microsoft(R) Visual C# 2010 編譯器 4.0.30319.1 版 版權所有(C) Microsoft Corporation。保留所有權利。 hello c#