Type ReflectedType Property gets the class object that was used to obtain this member
Imports System Imports System.Reflection Public MustInherit Class MyClassA Public MustInherit Class MyClassB End Class Public Shared Sub Main() Console.WriteLine(GetType(MyClassB).ReflectedType) End Sub End Class