In what I understand to be the classic beginner coding, I created my version of the "Hello World" program. For a break down of this code check out my previous post( C# Fundamentals for Absolute Beginners: Series 3 and 4) or check it out at Channel9 C# Fundamentals for Absolute Beginners 04.
If you copy the code into Visual Studio Express and run it, you will see my version of "Hello World"
If you copy the code into Visual Studio Express and run it, you will see my version of "Hello World"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello from Windows Phone Code Development");
Console.ReadLine();
}
}
}
0 comments:
Post a Comment