Sorry if this is a basic question, but I haven't been able to figure it out:
In C#, is there a way to copy the base class properties between 2 objects that share a common base class without copying each base class property separately? eg, Class B and Class C both derive from Class A. I want to copy the base class properties (inherited from Class A) of Class B object into the same inherited properties in a Class C object.
