class DerivedClass : BaseClass
class DerivedClass : BaseClass, IExampleInterface
class DerivedClass : BaseClass, IExampleInterface, IAnotherInterface
Classes can inherit directly from only one class, but (instead or at the same time) can implement one or more interfaces.
Structs can imp...