继承:继承属于单继承,只能继承一个父类. 继承的一个结果是派生于基类的子类在方法和属性上有一定的重叠. 继承只能够同时继承与一个基类:可以同时继承一个基类和多个接口,但是基类必须放在第一个.(注:C#没有多继承,如果非得想用多继承形式,只能使用接口) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespac…