コード例 #1
0
ファイル: Kitten.cs プロジェクト: vangelov-i/Fundamentals
 public override void ProduceSound(Animal animal)
 {
     Console.WriteLine("The kitten {0} says: meoow.", this.Name);
 }
コード例 #2
0
ファイル: Dog.cs プロジェクト: vangelov-i/Fundamentals
 public override void ProduceSound(Animal animal)
 {
     Console.WriteLine("The dog {0} says: Balo!", this.Name);
 }
コード例 #3
0
ファイル: Frog.cs プロジェクト: vangelov-i/Fundamentals
 public override void ProduceSound(Animal animal)
 {
     Console.WriteLine("The frog {0} says: ribbit!", this.Name);
 }
コード例 #4
0
ファイル: Animal.cs プロジェクト: vangelov-i/Fundamentals
 public abstract void ProduceSound(Animal animal);