vote up 1 vote down star
1

I want to write a method that uses Reflection to tell whether a given Type implements IList<T>. For example:

IsGenericList(typeof(int))                       // should return false
IsGenericList(typeof(ArrayList))                 // should return false
IsGenericList(typeof(IList<int>))                // should return true
IsGenericList(typeof(List<int>))                 // should return true
IsGenericList(typeof(ObservableCollection<int>)) // should return true

In my usage, I can assume that the type will always be an instantiated generic type (or something that's not generic at all).

Unfortunately, this isn't as easy as it ought to be. The obvious solution:

public bool IsGenericList(Type type)
{
    return typeof(IList<>).IsAssignableFrom(type);
}

doesn't work; it always returns false. Apparently non-instantiated generic types like IList<> don't implement IsAssignableFrom the way I'd expect them to: IList<> is not assignable from List<T>.

I've also tried this:

public bool IsGenericList(Type type)
{
    if (!type.IsGenericType)
        return false;
    var genericTypeDefinition = type.GetGenericTypeDefinition();
    return typeof(List<>).IsAssignableFrom(genericTypeDefinition);
}

I.e., turn type into its non-instantiated generic, like IList<int> -> IList<>, and then try IsAssignableFrom again. That will return true when type is an instantiated IList<T> such as IList<int>, IList<object>, etc. But it returns false for classes that implement IList<T> such as List<int>, ObservableCollection<double>, etc., so apparently IList<> is not assignable from List<>. Again, not what I would expect.

How do I go about writing IsGenericList and making it work as in the above examples?

flag

50% accept rate

6 Answers

vote up 5 vote down check

In fact, you cannot have an instance of a generic type definition. Therefore, the IsAssignableFrom() method works as expected. To achieve what you want, do the following:

public bool IsGenericList(Type type)
    if (type == null) {
    	throw new ArgumentNullException("type");
    }
    foreach (Type @interface in type.GetInterfaces()) {
    	if (@interface.IsGenericType) {
    		if (@interface.GetGenericTypeDefinition() == typeof(ICollection<>)) {
    			// if needed, you can also return the type used as generic argument
    			return true;
    		}
    	}
    }
    return false;
}

Just out of curiosity, what do you need this for?

link|flag
1  
+1 - This works, and is the only solution here that currently does - I just realized you had this after I posted the same thing. – Reed Copsey Jun 4 at 16:28
Never saw @ to use keywords as variable names in any production code before. – VVS Jun 4 at 16:31
Good solution. :) Small point however: using the @ symbols is generally not recommended practice. (You could just call the variable i or curInterface instead to resolve the name clash.) – Noldorin Jun 4 at 16:33
ReSharper gave that identifier this name when I auto-expanded the foreach on type.GetInterfaces() - I usually don't use that feature either when choosing names myself. But I wanted to be quick so I didn't refactor it. ;) – Lucero Jun 4 at 16:35
You're missing the { for the method and you used ICollection<> instead of IList<>, but otherwise this works perfectly, thanks! – Joe White Jun 4 at 17:35
show 1 more comment
vote up 1 vote down

Using this: http://msdn.microsoft.com/en-us/library/system.type.findinterfaces.aspx

I tried this:

 public class Test : IList<string>
 {
//implementation left out...
 }

class Program
    {
        static void Main(string[] args)
        {
            Test t = new Test();
            TypeFilter myFilter = new TypeFilter(MyInterfaceFilter);

            Type type = t.GetType();
            Type[] x = type.FindInterfaces(myFilter, "System.Collections.Generic.IList");
            Console.WriteLine(x.Length);

        }

        public static bool MyInterfaceFilter(Type typeObj, Object criteriaObj)
        {
            if (typeObj.ToString().Contains(criteriaObj.ToString()))
                return true;
            else
                return false;
        }
    }
link|flag
Using a non-strong-name to identify a type is very unsafe. Anyone can create a type with that name, it doesn't mean that it's the type you want to test for. – Lucero Jun 4 at 16:31
True, you could just replace it with this: Type[] x = type.FindInterfaces(myFilter, typeof(IList<>).FullName); – Irwin Jun 4 at 18:16
vote up 0 vote down

Have you tried calling Type.GetInterface()? It's not completely clear from the help, but I think that it will search interfaces implemented by base types, in addition to the type itself. If not, you can always loop through Type.BaseType and call GetInterface() again.

link|flag
GetInterface only works if you know the specific generic argument, but won't work for IList<T>. – Reed Copsey Jun 4 at 16:27
vote up 0 vote down

Lucero/Reed Copsey both have the right solution now. Just to make it more concise, here it is in LINQified form:

var isGenericList = type.GetInterfaces().Any(t => t.IsGenericType && 
    t.GetGenericTypeDefinition() == typeof(IList<>));
link|flag
Won't work, since GetInterfaces() will not return the generic type definitions, only the generic types (such as IList<int>). – Lucero Jun 4 at 16:23
Tested - does not work (it was my first attempt, too). – Reed Copsey Jun 4 at 16:27
Yeah, so it doesn't. I've updated it and it seems to work now however. – Noldorin Jun 4 at 16:28
You can rewrite my solution using Linq if you want... ;) – Lucero Jun 4 at 16:29
I didn't choose Linq because from the question it is only clear that generic are available, not what version of the C# compiler is being used. – Lucero Jun 4 at 16:37
show 3 more comments
vote up 0 vote down

This passes your tests ...

public static bool IsGenericList( Type type )
{
  return type.Name == "IList`1" || type.GetInterface( "IList`1" ) != null;
}
link|flag
type doesn't have to be generic to implement a generic interface. You can have this: class IntList: object, IList<int> { .... } which doesn't make IntList generic. – Lucero Jun 4 at 16:27
The IsGeneric check is not neccessary at all – tanascius Jun 4 at 16:33
vote up -1 vote down

Use the "is" operator:

The is operator is used to check whether the run-time type of an object is compatible with a given type.

link|flag
I don't have an instance. I have the Type. – Joe White Jun 4 at 16:18
This won't work with IList<>, only with IList<int>, etc. You need to have a concrete type for "is" to work... – Reed Copsey Jun 4 at 16:19

Your Answer

Get an OpenID
or

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