G
Guest
I have a string representation of an object. I create an object of that type
through reflection. I would like to create a List<> of those objects. I
obviously can't do
List<myObject.GetType()>
or
Type t = object.GetType();
List<t>;
Any suggestions.
through reflection. I would like to create a List<> of those objects. I
obviously can't do
List<myObject.GetType()>
or
Type t = object.GetType();
List<t>;
Any suggestions.