Custom Search

Monday, August 10, 2009

Things are a coming.

I am planning on making a new learn C# video, The first video i will have made in this site in over 7 months. sorry for the long delay video will be out tomorrow about it.

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