Answers for "hello world program c #"

C#
5

c# hello world

using System; 
 
namespace HelloWorldApp { 

	class Program { 
		
		static void Main(string[] args) { 
			
			Console.WriteLine("Hello World!"); 
			Console.ReadKey(); 
		} 
	} 
}
Posted by: Guest on February-09-2021
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