[Solved] Trouble with Inheritance c# [closed]
[ad_1] Remove the getter and setter of your private campusName and rename your public campusName to CampusName. Add following code in your Campus class public override string ToString() { return CampusName() + “\n is located at ” + ShowAddress() + “\n it has ” + Departments(); } You should write a base School class public … Read more