So I derived from a parent class, overridden the virtual method and faced with the following issue: the overridden method calls private ones. I have 2 obvious ways how to handle this:
- Bring the implementation of the private method into my class;
- Use the Reflection.
The #1 approach is bad because... because I want to write you about the Reflection :)
actually I hope you know why it's unacceptable.