Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to use reflection to collect a property from a class that returns a certain type. However some of the properties I'm returning are strongly typed lists that house the type I want. Essentially I am trying to do the following:

Public Function GetPropertyInfo(ByVal t as System.Type)
   for each pi as System.Reflection.PropertyInfo in ob.GetType.GetProperties()
      if pi.PropertyType.equals(GetType(List(Of t)))
         return pi
      end if
   next

   Return Nothing
End Function

Obviously this doesn't work as it throws an error saying t is not a declared type. Is there any way to do this?

Thanks.

share|improve this question

1 Answer

up vote 2 down vote accepted

In C#, you are looking for this syntax:

Type desiredPropertyType = typeof(List<>).MakeGenericType(new Type[] { t });

Which reflector says is this:

Dim desiredPropertyType As Type = GetType(List(Of )).MakeGenericType(New Type() { t })
share|improve this answer
Great, worked like a charm. Thanks! – link664 Aug 13 '09 at 7:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.