Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# hello world

// class
class Hello {
  //main method
  static void Main(string[] args) 
  {
    Console.WriteLine("Hello World!"); // print 'Hello World!'
  } // end of method
}// end of class

//good luck :)
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
9+4 =