Common Type System—Interface Inheritance
Interface Inheritance
A subclass inheriting from a base type using interface inheritance only gets API placeholders in its public surface area for the base type’s nonprivate members. That is, no implementation comes along with inherited methods, only the signature. The subclass is usually required to manually implement these members. There are two cases where the CTS supports interface inheritance: abstract classes and interfaces. These are discussed below.
|

