Skip to content
Home » Hello world with C#

Hello world with C#

Hello world basic program in C#. This simply prints “Hello World!” on console output screen.

using System;

namespace HelloWorld
{
    class MyFirstClass
    {    
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");         
            Console.ReadKey();
        }
    }
}
Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *