Answers for "hello world code in c sharp"

C#
1

hello world C#

using System;

namespace Project
	{
  	public class Program
    	{
      	public static void Main(string[] args)
        	{
          	Console.Write("Hello world!"); // Write means write on that line
          	Console.WriteLine("hello"); // WriteLine means write and end that line
        }
    }
}
Posted by: Guest on December-07-2021

C# Answers by Framework

Browse Popular Code Answers by Language