Casting within inheritance hierarchies
Casting is subtly different from converting between types.
Implicit casting
In the previous example, you saw how an instance of a derived type can be stored in a variable of its base type (or its base's base type and so on). When we do this, it is called implicit casting.
Explicit casting
Going the other way is an explicit cast, and you must use parentheses to do it.
In the Main
method, add the following code:
Employee e2 = aliceInPerson;
Visual Studio 2017 and Visual Studio Code display a red squiggle and a compile error in the Error List and Problems window, as shown in the following screenshot:
Change the code as follows:
Employee e2 = (Employee)aliceInPerson;
Handling casting exceptions
The compiler is now happy; but, because aliceInPerson
might be a different derived type, like a Student
instead of an Employee
, we need to be careful. This statement might throw an InvalidCastException
error.
We can handle this by writing a try
statement...