示例#1
0
文件: Bird.cs 项目: mtaylorhayden/OOP
 /// <summary>
 /// Hatches an egg.
 /// </summary>
 /// <param name="egg">The egg to hatch.</param>
 private void HatchEgg(IHatchable egg)
 {
     // Hatch the egg.
     egg.Hatch();
 }
 /// <summary>
 /// Hatches a baby out of its egg.
 /// </summary>
 /// <param name="egg">The egg to hatch.</param>
 private void HatchEgg(IHatchable egg)
 {
     egg.Hatch();
 }