using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace _05base关键字{ //显示的调用父类的构造函数 //调用父类中的重名方法 class Program { static void Main(string[] args) { Student s = new Student(); Console.Rea…