public static void Main()
    {
        /* Creat an increment object with increment step of 5 */
        Increment incrementer = new Increment(5);

        /* Show the vlaue of total before incrementation */
        Console.WriteLine("Before incrementing: {0}\n", incrementer);

        /* Increment total  */
        for (int i = 1; i <= 3; i++)
        {
            incrementer.AddIncrementToTotal();
            Console.WriteLine("After increment {0}: {1}\n", i, incrementer);
        }// end for

        Console.ReadLine();
    } // end method Main