Answers for "c# hello print world"

C#
1

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();
        }
    }
}
Posted by: Guest on September-05-2020

C# Answers by Framework

Browse Popular Code Answers by Language