Hello world program in C#

Rumman Ansari   Software Engineer   2023-03-30   5979 Share
☰ Table of Contents

Table of Content:


using System;

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

Output

Hello World!