Exemplo n.º 1
0
        void PrintName()
        {
            CorporateCustomer cc = new CorporateCustomer();
            cc.Name = "Anand";

            // OR
            base.Name = "Dev";
            this.Name = "Singh";
        }
Exemplo n.º 2
0
        void PrintName()
        {
            CorporateCustomer cc = new CorporateCustomer();

            cc.Name = "Anand";

            // OR
            base.Name = "Dev";
            this.Name = "Singh";
        }