The first Application

Hello World!

The first step to learn a new programming language is traditionally to start with the simple "Hello, World!" program. This program does nothing more than printing the two words "Hello, World!" at the console, but it starts to make clear some C# concepts such as using namespaces, declaring classes, and declaring methods.
// Hello World! - Our first Program
using System;

class Test {

        public static void Main() {
                Console.WriteLine("Hello, World!");
        }

}