C# program to Print Hello World!

C# Programming Language / Overview of C# Language

449

Program:

using System;

namespace TechStudyCSharp
{
    class Program
    {
        static void Main(string[] args)
        {

            Console.WriteLine("Hello World");
            Console.Read();           
        }
    }
}

Output:

Hello World

Explanation:

My first C# Language

This Particular section is dedicated to Programs only. If you want learn more about C# Programming Language. Then you can visit below links to get more depth on this subject.