Q:

C# Program to Print “Hello, World!”

0

C# Program to Print “Hello, World!”

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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:

Hello World

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# program to add two numbers... >>