Let say I have a List abc = new List< T >; inside a class public class MyClass//....
Later, when I initialize the class, the T becomes MyTypeObject1. So I have a generic list, List< MyTypeObject1 >.
I would like to know, what type of object the list of my class contain, e.g. the list called abc contain what type of object?
I cannot do abc[0].GetType(); because the list might contain zero elements. How can I do it?