Custom Search

Friday, January 9, 2009

Learn C# Programming #1 hello world REMAKE

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 ();
    }
  }
}

1 comment:

C# Learning Tutorials said...

Great post. Keep up the good work.