wingman007

OOP2bCatDogAnimal

Mar 22nd, 2016
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace CatDog2b
  8. {
  9.    abstract class Animal
  10.     {
  11.        public string Name { get; set; }
  12.        public int Age { get; set; }
  13.  
  14.        // public abstract string MakeNoice()
  15.        public virtual string MakeNoice()
  16.        {
  17.            return "My name is " + Name + " I am " + Age + " years old!";
  18.        }
  19.  
  20.        public Animal(string name, int age)
  21.        {
  22.            Name = name;
  23.            Age = age;
  24.        }
  25.     }
  26. }
Add Comment
Please, Sign In to add comment