C# program to Print Hello World!

Introduction

C# Program to Print “Hello, World!”. This program is compiled and tested on a Visual Studio 2012.

using System;

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

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

Result

C# program to Print Hello World!
C# program to Print Hello World!

1 thought on “C# program to Print Hello World!”

Leave a Comment