Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

hello world c#

using System;

class Program
{
	static void Main(string[] args)
    {
      	Console.WriteLine("Hello World"); 
		//note: you can replace {Hello World} with any thing you want to print on the screen
    	//also you can add {Console.ReadKey(true);} if you dont want the program to close immediately (this command is basicly waiting for a key press from the user)
    }
}
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
4+1 =