Compile and run C
Aus Wiki
Version vom 10. März 2017, 15:22 Uhr von Chris (Diskussion | Beiträge) (→Compile and Run C# under Linux)
Compile and Run C# under Linux[Bearbeiten]
Install package
sudo apt-get install mono-complete
Compile program
mcs -out:hello.exe hello.cs mcs -out:binario.exe -r:System.Windows.Forms.dll -r:System.Drawing.dll *.cs
Run program
mono hello.exe