Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CatDog2b
- {
- abstract class Animal
- {
- public string Name { get; set; }
- public int Age { get; set; }
- // public abstract string MakeNoice()
- public virtual string MakeNoice()
- {
- return "My name is " + Name + " I am " + Age + " years old!";
- }
- public Animal(string name, int age)
- {
- Name = name;
- Age = age;
- }
- }
- }
Add Comment
Please, Sign In to add comment