How to Access a descendant object's internal method in C#
- by Giovanni Galbo
I'm trying to access a method that is marked as internal in the parent class (in its own assembly) in an object that inherits from the same parent.
Let me explain what I'm trying to do...
I want to create Service classes that return IEnumberable with an underlying List to non-Service classes (e.g. the UI) and optionally return an IEnumerable with…