Wednesday, July 16, 2008

//Built using VS 2005, C# Console
// A simple hello world in C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CSharpConsoleCodeTesting
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
// output text to the console.
Console.ReadLine(); // wait for user to hit enter to close console.
}
}
}

No comments: