I\'m new to this, and don\'t know where to start.
I want to compile a Visual Studio C# project with Mono on Linux (by command line).
The main.cs file include
If you are into running/compiling/debugging C# on Linux, you now can use
and if you want something with exactly the same api on linux and windows, you can use .Net Core
On the command line, to compile:
dotnet build
or if you have only one project in the folder
dotnet build
and then
dotnet run