コード例 #1
0
ファイル: Program.cs プロジェクト: al-main/Asp-Dot-Net-CSharp
        void PrintName()
        {
            CorporateCustomer cc = new CorporateCustomer();
            cc.Name = "Anand";

            // OR
            base.Name = "Dev";
            this.Name = "Singh";
        }
コード例 #2
0
        void PrintName()
        {
            CorporateCustomer cc = new CorporateCustomer();

            cc.Name = "Anand";

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