C# : how do you obtain a class’ base class? June 6, 2023 by Tarik Use Reflection from the Type of the current class. Type superClass = myClass.GetType().BaseType;