downcast and upcast
That is correct. When you do that you are casting it it into an employee object, so that means you cannot access anything manager specific. Downcasting is where you take a base class and then try and turn it into a more specific class. This can be accomplished with using is and an explicit cast … Read more