Example #1
0
            public static void Main()
            {
                string   xyz = "";
                Boat     b1  = new Boat();
                Sailboat b2  = new Sailboat();
                Rowboat  b3  = new Rowboat();

                b2.SetLength(32);

                xyz  = b1.Move();
                xyz += b3.Move();
                xyz += b2.Move();

                MessageBox.Show(xyz);
            }