Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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
        }
    }
}
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
2+3 =