简体   繁体   中英

Get BaseTypes of an Assembly by Reflection

im trying to develop an app. like vs ObjectBrowser and flow was something like this: stackoverflow.com/questions/6939400/create-a-application-like-visual-studio-object-browser

now my problem was i cant find the method for calling all basetypes ... something like: 在此处输入图片说明

instead i can only see "Object" as BaseType for Class ...

Q: Is there a way I can get all basetypes via reflection?

Interfaces ( IComparable , IStructuralComparable etc.) are not base types , since a base type can be only one ( Object in your case). If you want to get all the interfaces implemented use

  Type tp = ... // type of interest

  Type baseType = tp.BaseType; // Base type
  Type[] interfaces = tp.GetInterfaces(); // Interfaces

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM