Hello, World!

| December 1, 2008 | 0 Comments

Since this is the first post in a programming blog I think a Hello World program in Winforms and ASP.NET is a good idea.

 

//The Winforms version

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("Hello, World!");
        }
    }
}

 



Related Posts:

Filed Under: ASP.NET, WinForms

Follow us on Twitter

Leave a Reply