Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public bool IsList(object value)
    {
        Type type = value.GetType();
        // Check if type is a generic list of any type
    }

What's the best way to check if the given object is a list, or can be cast to a list?

share|improve this question

7 Answers

up vote 18 down vote accepted
if(value is IList && value.GetType().IsGenericType) {

}
share|improve this answer
This does not work - I get the following exception - value is IList Using the generic type 'System.Collections.Generic.IList<T>' requires '1' type arguments – Jason Apr 27 '09 at 16:38
1  
You need to add using System.Collections; on top of your source file. The IList interface I suggested is NOT the generic version (hence the second check) – James Couvares Apr 27 '09 at 16:41
1  
You're right. This works like a charm. I was testing this in my Watch window and forgot all about the missing namespace. I like this solution better, very simple – Jason Apr 27 '09 at 16:51
This doesn't work. I would guess in 4.0 IList<T> != IList? Anyway, I had to check if it was generic and IEnumerable, and then check for the existence of the property I wanted to check, "Count". I suppose this weakness is partly why WCF turns all of your List<T>'s into T[]. – RiverC May 9 at 20:55

For you guys that enjoy the use of extension methods:

public static bool IsGenericList(this object o)
{
    bool isGenericList = false;

    var oType = o.GetType();

    if (oType.IsGenericType && (oType.GetGenericTypeDefinition() == typeof(List<>)))
    	isGenericList = true;

    return isGenericList;
}

So, we could do:

if(o.IsGenericList())
{
 //...
}
share|improve this answer
if(value is IList && value.GetType().GetGenericArguments().Length > 0)
{

}
share|improve this answer
I think you need a call to GetType() e.g. value.GetType().GetGenericArguments().Length > 0 – ScottS Apr 27 '09 at 16:17
Oops, you're right. My mistake. – BFree Apr 27 '09 at 16:17

Probably the best way would be to do something like this:

IList list = value as IList;

if (list != null)
{
    // use list in here
}

This will give you maximum flexibility and also allow you to work with many different types that implement the IList interface.

share|improve this answer
1  
this does not check if it a generic list as asked. – Lucas Apr 27 '09 at 18:00
 bool isList = o.GetType().IsGenericType 
                && o.GetType().GetGenericTypeDefinition() == typeof(IList<>));
share|improve this answer
public bool IsList(object value) {
    return value is IList 
        || IsGenericList(value);
}

public bool IsGenericList(object value) {
    var type = value.GetType();
    return type.IsGenericType
        && typeof(List<>) == type.GetGenericTypeDefinition();
}
share|improve this answer

Your Answer

 
discard

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