Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# hello world

using System; // Java doesn't use this, but c# does

public class main
{
  public static void Main(String[] args)
  {
    Console.WriteLine ("Hello World"); // Java = 'System.out.println("Hello World);");'
  }
}
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
7+8 =