Recent

Thursday, December 30, 2021

C# Hello World - Your First C# Program

 C# Hello World - Your First C# Program


The “Hello World!” program is often the first program we see when we dive into a new language. It simply prints Hello World! on the output screen.


  
using System;

public class HelloWorld
{
    public static void Main(string[] args)
    {
        Console.WriteLine ("Hello Mono World");
    }
}
  

Output

Hello World!

No comments:

Post a Comment