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
As everybody pointed out allready, you should declare the withdraw() method on your base class acocunt, so all the derived classes can inherit the method.