I\'m having an error message that tells me this:
\'BankAccount.account\' does not contain a definition for \'withdraw\'.
Here\'s my code:
using S
You're calling
base.withdraw(amt);
from your class savingsaccount. But the base class (account) has no such method. So the compiler is absolutely correct.
savingsaccount
account