Hello,
I am trying to check if a type implements the generic Icollection interface, since this is a base interface for any of my generic collections.
the below code doesnt work
GetType(ICollection(Of)).IsAssignableFrom(
objValue.GetType().GetGenericTypeDefinition())
whats a good way of detecting if a type implements a generic interface
many thanks