C# Language Inheritance

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Syntax

  • class DerivedClass : BaseClass
  • class DerivedClass : BaseClass, IExampleInterface
  • class DerivedClass : BaseClass, IExampleInterface, IAnotherInterface

Remarks

Classes can inherit directly from only one class, but (instead or at the same time) can implement one or more interfaces.

Structs can implement interfaces but cannot explicitly inherit from any type. They implicitly inherit from System.ValueType, which in turn inherits directly from System.Object.

Static classes cannot implement interfaces.



Got any C# Language Question?