I have a class that has private fields… (cars)
I then inherit from this class… (Audi)
In the (Audi) class, when I type this. in the constructor…
the private fields are not available…
Do I need to do anything special to expose this private fields in (cars) class so that they are accessible via this. in (Audi class)?
You should declare them as “protected” instead of private