Posts from — December 2006

Hello World!

December 16, 2006 No Comments

Hello World in C# language :D

using System;
class HelloWorld
{
public static int Main(String[] args)
{
Console.WriteLine("Hello, World!");
return 0;
}
}