Retrieves the base type for the current type.
[Visual Basic] Overridable Public ReadOnly Property BaseType As Type [C#] public Type BaseType {override get;} [C++] public: __property virtual Type* get_BaseType(); [JScript] public function get BaseType() : Type;
The base type for a type.
The base type is the type from which this type directly inherits. Since the Object class type is the ultimate base class of all the other types, it is the only type that does not have a base type. In this case a null reference is returned as the base type of the Object type.
TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace