How to infer the type of a derived class in base class?
- by enzi
I want to create a method that allows me to change arbitrary properties of classes that derive from my base class, the result should look like this: SetPropertyValue("size.height", 50); – where size is a property of my derived class and height is a property of size.
I'm almost done with my implementation but there's one final obstacle that I want…