Wednesday, January 24, 2007

.NET Resources

C# 2005 Express Edition (Standard)
C# 2005 Express Edition (With MSDN Express - CD)

SQL Server 2005 Express
SQL Server Management Studio Express



Thursday, January 18, 2007

Hello, World!

using System;
namespace HelloWorld
{
    class HelloWorld
    {
        public static int main()
        {
            Console.WriteLine("Hello, World!");
            return 0;
        }
    }
}