Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class Bird : BaseAnimal
  2. {
  3. public Bird(string name) : base(name)
  4. {
  5. }
  6.  
  7. public override void DoMove()
  8. {
  9. Console.WriteLine(name + " is flying.");
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement