Hello, World!

Amgad Suliman | 01/12/2008 | 0 Comments | 19 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!");
        }
    }
}

 


  • Share/Bookmark
Filed Under: ASP.NET, WinForms
Do you have an article you think webmasters might find useful? Send it to us.

Leave a Reply