14 lines
247 B
C#
14 lines
247 B
C#
namespace OOP
|
|
{
|
|
public abstract class Animal
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public abstract void MakeSound();
|
|
|
|
public void Feed()
|
|
{
|
|
Console.WriteLine("Feeding the animal");
|
|
}
|
|
}
|
|
} |