You have already completed these exercises!
Do you want to take them again?
You completed the C# Inheritance Exercises from W3Schools.com
Share on:
Drag and drop the correct access modifier to allow model to be accessed in inherited classes.
model
class Car{ string model = "Mustang";}class SportsCar : Car{ // Inherits from Car}