Friday, December 19, 2008

C# Hello World Console

//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:

Post a Comment