Skip to main content

C#:Program #1(Output)

using System;
namespace HELLOWORLD
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");

            Console.ReadLine();
        }
    }
}

Comments

Popular posts from this blog