BTW, where do you usualy put the brackets in C#? After the line, or on a blank new line? I usualy add them to the same line. Guess it is an old VB habbit. LIke this:

Code:
using System;

class DoomSharp{
    public static void Main(){
        Console.WriteLine("DoomSharp Will make you young..."); 
        Console.WriteLine("DoomSharp Will make you pretty...");
        Console.WriteLine("DoomSharp Will make you sexy...");
        Console.WriteLine("DoomSharp Will make you smart...");
        Console.WriteLine("DoomSharp Will make you happy.........");
    }
}