热门标签
更多>
搜索结果
查询Tags标签: TestChild,共有 2条记录-
C# 类继承自类、类实现接口判断
类是否继承某个类 // IsSubclassOf TestChild是否为TestParent的子类 typeof(TestChild).IsSubclassOf(typeof(TestParent))// IsAssignableFrom TestParent是否为TestChild的父类 typeof(TestParent).IsAssignableFrom(typeof(TestChild)) 类是否实现某个接口 typeof(Tes…
2022/1/8 14:03:29 人评论 次浏览 -
C# 类继承自类、类实现接口判断
类是否继承某个类 // IsSubclassOf TestChild是否为TestParent的子类 typeof(TestChild).IsSubclassOf(typeof(TestParent))// IsAssignableFrom TestParent是否为TestChild的父类 typeof(TestParent).IsAssignableFrom(typeof(TestChild)) 类是否实现某个接口 typeof(Tes…
2022/1/8 14:03:29 人评论 次浏览