Suppose I have an Employee object with the following properties:...string Name { get; }
float Hours { get; }
float Wage { get; }
...I want to add a property, Salary, which equals Hours * Wage. In an ordinary business object, I would simply code that up in...