Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

hello world in c#

//This is a Hello World! program in C#
namespace Helloworldprogram
{
    class Hello {         
        static void Main(string[] args)
        {
            System.Console.WriteLine("Hello World!");
        }
    }
}
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
4+6 =