|
Note on Mono compiler: http://www.mono-project.com/CSharp_Compiler
Installing C# compiler
$ sudo apt-get install mono-gmcs
Compiling C# source code
$ gmcs ConsoleApplication1.cs
This will create ConsoleApplication1.exe.
Running the executable
$ mono ConsoleApplication1.exe
|