c# hello print world code example
Example: c# hello world
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
// To prevents the screen from
// running and closing quickly
Console.ReadLine();
}
}
}