public custom_class_example()
        {
            Girl ana = new Girl("Ana");
            Girl kelsey = new Girl("Kelsey", 19);
            Girl meghan = new Girl("Meghan", 21);

            Girl[] array = new Girl[3];//this is not the index value, but the amount of items it will hold.

            array.SetValue(ana, 0);
            array.SetValue(kelsey, 1);
            array.SetValue(meghan, 2);

            for (int i = 0; i < array.Length; i++)
            {
                Girl loopGirl = (Girl)array.GetValue(i);
                if (loopGirl.Hot == true)
                {
                    Console.WriteLine("{0} is a sexy lady.\n", loopGirl.Name);
                }
                else
                {
                    Console.WriteLine("{0} is not attractive.\n", loopGirl.Name);
                }
            }
        }