Adsense code (2021-10-05)

Sunday, November 29, 2015

MonoDevelop on Kubuntu: Hello World C# example



using System;

namespace HelloWorldCsharp
{
    class MainClass
    {
        public static void Main (string[] args)
        {
            Console.WriteLine ("Hello World!");
        }
    }
}

Create a Hello World C# example in MonoDevelop run on Kubuntu: