首页 > 代码库 > C#控制台 判断两者类是否存在继承的关系
C#控制台 判断两者类是否存在继承的关系
1 code
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Reflection; 5 using System.Text; 6 using System.Threading.Tasks; 7 8 namespace ConsoleApplication1 9 { 10 class Program 11 { 12 static void Main(string[] args) 13 { 14 Type tpPerson = typeof(Person); 15 Type tpStudent = typeof(Student); 16 17 //student是person的父类吗? 18 bool res = tpPerson.IsSubclassOf(tpStudent); 19 Console.WriteLine(res); 20 21 //person是student的父类吗? 22 res = tpStudent.IsSubclassOf(tpPerson); 23 Console.WriteLine(res); 24 25 Console.ReadKey(); 26 } 27 } 28 29 public class Person 30 { } 31 public class Student:Person 32 { } 33 }
2 show
C#控制台 判断两者类是否存在继承的关系
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。