コード例 #1
0
ファイル: Dog.cs プロジェクト: nidge/MyCodeBible2017GIT
        public void OtherStuff()
        {
            Dog d = new Dog();

            d.Eat();   // This uses the method in the Mammal class (since we are inheriting from it)
            d.Sleep(); // This uses our own implementation (since it is an abstract class)
        }