Youtube video
http://www.youtube.com/watch?v=Olv19adOryo
Microsoft Visual C# 2008 Express edition
http://www.microsoft.com/express/vcsharp/
Sharp Develop
http://icsharpcode.net/OpenSource/SD/
Hello world Source
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main ( string[] args )
{
Console.WriteLine ( “hello World!” );
Console.ReadKey ();
}
}
}