C# program to print Hello World!

using System;  //.NET Framework Namespace

namespace HelloWorld  // namespace declaration

 {   

    class AkbTechie // Class declaration     

      {  

        static void Main(string[] args) // Main Method                      

         {  

            Console.WriteLine("Hello World!");     // printing Hello World on Screen!                   

            Console.ReadKey(); //wait for User to Press any Key to Exit

         } 

    } 

}

Output :-Hello World!

एक टिप्पणी भेजें

0 टिप्पणियाँ