I'm using reflection to inspect a class and its methods. Is is
possible to determine if the class is a derived class or an interface
implementation? I'm using the MethodInfo object for relfection that I
use for acquiring the function names, scope, parameters, etc. Is
there an "InheritedClass Type" or "InterfaceT ype" property that I can
query? I've tried using DeclaringType.B aseType, but that doesn't seem
to give me what I want.
Regards,
Rob
possible to determine if the class is a derived class or an interface
implementation? I'm using the MethodInfo object for relfection that I
use for acquiring the function names, scope, parameters, etc. Is
there an "InheritedClass Type" or "InterfaceT ype" property that I can
query? I've tried using DeclaringType.B aseType, but that doesn't seem
to give me what I want.
Regards,
Rob
Comment