}
public abstract class Animal
{
public abstract string Sound(); //创建抽象方法
public void Play() // 创建非静态普通方法
{
Console.WriteLine ();
}
}
public class person :Animal
{
// 抽象方法 必须在 子类中实现
public override string Sound()
{
string str="I like music";
return str;
}
}