Custom Search

Sunday, July 13, 2008

C# chapter 2


Video location
http://youtube.com/watch?v=EUn5GRZp8i4

http://learncsprogramming.blogspot.com/
Download The Source Code here
http://downloads.sourceforge.net/learncsprogrammVariablesAndConstantans.zip?use_mirror=osdn

In this Video we will be talking about Variables, constants and comments

Tuesday, July 8, 2008

Installing SharpDevelop

Here is a video that came to my attention earlier today
It shows you how to download and Install SharpDevelop.

it is best to view in full screen

http://www.youtube.com/watch?v=Qu6GUb3ElIs

Monday, July 7, 2008

Learn C# programming #1 -- Hello World


the youtube video
http://www.youtube.com/watch?v=gRmEvcyk52Q

Microsoft Visual C# 2008 Express edition
http://www.microsoft.com/express/vcsharp/

Sharp Develop
http://icsharpcode.net/OpenSource/SD/

HelloWorld version 1

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HelloWorld
{
class Program
{
static void Main ( string[] args )
{
Console.WriteLine ( arg );
Console.ReadKey ( true );
}
}
}

HelloWorld version 2

using System;

namespace HelloWorld
{
class Program
{
static void Main ( string[] args )
{
foreach (string arg in args)
{
Console.WriteLine ( arg );
}
Console.ReadKey ( true );
}
}
}

William Edward McCormick