A very simple hello world application, just to get a feel of the basics of the C# language and how the framework runs.
First download and install the .NET Core SDK for Windows, Linux of macOS. After that install the dependencies and run the compilation script:
$ dotnet restore
$ dotnet run
You could also dotnet build
and dotnet exec ...
, but dotnet run
is a shortcut to do both of these things.