I am trying to work with lists of objects that all come from the same base class.
I have my base type (question) and derived types (3TQ, 2TQ)
Depending on the situation the list will all be of one or other derived type.
So all my interfaces deal with a list of the base type question.
But once I have the list in my grasp, I cant access the derived types.
So long story short - how does one extract a usable derived object from the list of the base objects? I feel this should be easy and that I am missing something really obvious.