コード例 #1
0
ファイル: Zoo.cs プロジェクト: Anil1111/training_dot_net
        public Zoo()
        {
            Animal  a = new Animal("Squicky the squirrel");
            Lion    l = new Lion("Leo the lion");
            Giraffe g = new Giraffe("Gerry the giraffe");

            animals = new Animal[] { a, l, g };
        }
コード例 #2
0
ファイル: Zoo.cs プロジェクト: Anil1111/training_dot_net
 public void PrintLion(Lion lion)
 {
     Console.Write("In Zoo.PrintLion. ");
     lion.PrintName();
     lion.Roar();
 }