I need to access some members marked internal that are declared in a third party assembly.
I would like to return a value from a particular internal property in a class. Then I'd like to retrieve a value from a property on that returned value. However, these properties return types that are also internal and declared in this third party assembly.
The examples of doing this I've seen are simple and just show returning int or bool. Can someone please give some example code that handles this more complex case?