Skip to main content

Posts

Showing posts from 2016

C# Hello World Example

using  System; namespace  HelloWorld {      class  Program     {          public   static   void   Main ( string [] args)         {             Console. WriteLine ( "Hello World!" );                           //  TODO : Implement Functionality Here                          Console. Write ( "Press any key to continue . . . " );             Console. ReadKey ( true );         }     } }