vote up 0 vote down star

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

flag

78% accept rate
Just curious: why do you need to do this? Isn't this the compiler's job? – Andrew Hare Sep 24 at 14:43

2 Answers

vote up 8 vote down check
CustomCollection c = new CustomCollection();

bool implementICollection = c.GetType().GetInterfaces()
                            .Any(x => x.IsGenericType &&
                            x.GetGenericTypeDefinition() == typeof(ICollection<>));
link|flag
This is the correct answer; I've tested it – Ngu Soon Hui Sep 24 at 14:47
vote up 1 vote down

An alternative to the others is the following:

if (MyObject is ICollection<T>)

...

Note: This will only work if you have some way of knowing the type "T". Otherwise, this will not work for you.

link|flag

Your Answer

Get an OpenID
or

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