How to run C# (Sharp) code in Ubuntu?
Follow the simple steps and we are ready to fly with C#.
1. Install
2. Write code in file with extension .cs (dot cs)
3. Compile the code as
4. If all went fine the run the file as :
That's It. We are ready to fly with C# language on Ubuntu.
Keep Learning :)
Follow the simple steps and we are ready to fly with C#.
1. Install
sudo apt-get install mono-gmcs
2. Write code in file with extension .cs (dot cs)
3. Compile the code as
gmcs <filename>.cs
4. If all went fine the run the file as :
mono <filename>.exe
That's It. We are ready to fly with C# language on Ubuntu.
Keep Learning :)