コード例 #1
0
ファイル: Program.cs プロジェクト: KHProjects/KH-Parker-Fox
        static void Main(string[] args)
        {
            Account customerAccount = new CustomerAccount();
              Account childAccount = new BabyAccount();

              Console.WriteLine(customerAccount.RudeLetterString());
              Console.WriteLine(childAccount.RudeLetterString());
              Console.ReadLine();
        }