예제 #1
0
        static void Wr_i(object m) => Console.Write(m);     //Includes a new line char

        //Inherit and Override
        public override void overrideThisPlease()
        {
            Wr_L("Howdy Howdy y'all my I just overrode the User meth and by I, I am: " + TheFullName.ToUpper());
        }
예제 #2
0
        static void Wr_i(object m) => Console.Write(m);     //Includes a new line char

        //Inherit and Override
        public override void overrideThisPlease()
        {
            Wr_L("Howdy Howdy y'all my I just overrode the User meth and by I, I am: " + TheFullName.ToUpper());
            //  do not put parenthesis after TheFull Name
            //Error Generated: Expression denotes a `value',
            //where a `method group' was expected
        }