polymorphism, inheritance in c# - base class calling overridden method?
- by Andrew Johns
This code doesn't work, but hopefully you'll get what I'm trying to achieve here. I've got a Money class, which I've taken from http://www.noticeablydifferent.com/CodeSamples/Money.aspx, and extended it a little to include currency conversion.
The implementation for the actual conversion rate could be different in each project, so I decided to…