Today-I-Learned-Blog

Easy C# Compiling with Mono Software

Today I learn the Mono compiler makes it easy to quickly run C# programs.

Compile a C# Console Program

SETUP

    public class HelloWorld
    {
        static public void Main ()
        {
            Console.WriteLine ("Hello Mono World");
        }
    }

COMPILE & RUN

Compile

mcs hello-world.cs

Run your program

TL;DR


REFERENCES