is there a way to retrieve type T from IEnumerable<T> through reflection?
e.g.
i have a variable IEnumerable<Child> info; i want to retrieve Child's type through reflection
|
is there a way to retrieve type e.g. i have a variable |
|||||
|
Thusly,
prints See MSDN for Edit: I believe this will address the concerns in the comments:
Some objects implement more than one generic Edit: Although, I have to say, it's a terrible idea for a class to implement |
|||||||||
|
|
If you know the
|
|||||||||
|
|
I'd just make an extension method. This worked with everything I threw at it.
|
||||
|
|
|
Just use EDIT: Or use .GetType().GetGenericParameter() on an instantiated object if you don't have T. |
||||
|
Thank you very much for the discussion. I used it as a basis for the solution below, which works well for all cases that are of interest to me (IEnumerable, derived classes, etc). Thought I should share here in case anyone needs it also:
|
|||
|
|
|
|
|||
|
|
|
An alternative for simpler situations where it's either going to be an
|
|||
|
|