July 2015
Intermediate to advanced
1300 pages
87h 27m
English
Before explaining how inheritance is applied in code, a graphical representation can be useful. Figure 12.1 shows how you can create robust hierarchies of custom objects with inheritance.
FIGURE 12.1 A graphical representation of a custom framework of objects using inheritance.
You derive a class from a base class using the Inherits keyword. For example, consider the following implementation of the Person class that exposes some basic properties:
Public Class Person Public Property FirstName As String Public Property LastName As String 'A simplified implementation Public Function ...