# Get nuget.exe command line
wget https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -OutFile nuget.exe
# Download the C# Roslyn compiler (just a few megs, no need to 'install')
.\nuget.exe install Microsoft.Net.Compilers
# Compiler, meet code
.\Microsoft.Net.Compilers.1.3.2\tools\csc.exe .\HelloWorld.cs
# Run it
.\HelloWorld.exe
一个示例 HelloWorldd.cs
using System;
public class HelloWorld {
public static void Main()
{
Console.WriteLine("Hello world!");
}
}
这太古老了。但是因为这是你作为一个初学者的结局,当你问一些问题来理解如何在没有 Visual Studio CE 的编译器的控制台中使用 C # 像 C 或 C + + (如果你还没有使用它,强烈推荐使用 C #) ,你最终会变得更加困惑。NET 框架、库和 SDK。
如果像你这样的人无意中发现了我作为一个初学者的答案: