Hi
Given a class implementation like e.g.
How would I go about finding out what <T> type the generic list is of?Code:Public Class MyControlList Inherits Generic.List(Of Control) End Class
e.g.
Code:Public Function ItemType(Byval CollectionType As Type) As Type ' ?? what magic code goes here End Function




Reply With Quote