Hello, World!

Amgad | December 1, 2008 | 0 Comments | 23 Visits

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

Leave a Reply