文件名称:接口和抽象方法一起继承.pdf
文件大小:142KB
文件格式:PDF
更新时间:2022-09-09 16:32:37
接口和抽象方法
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication7 { public interface IMove { void Move(); void Eat(); } } using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication7