Tuesday, November 23, 2010

C# Program "Hello World"

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

class program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
}
}



NOTE:
The Program file name should be as class Name..
For the above program it should be program.cs

No comments:

Post a Comment