web-dev-qa-db-fra.com

Comment vérifier si une valeur donnée est une liste générique?

public bool IsList(object value)
    {
        Type type = value.GetType();
        // Check if type is a generic list of any type
    }

Quelle est la meilleure façon de vérifier si l'objet donné est une liste, ou peut être converti en liste?

70
Jason
if(value is IList && value.GetType().IsGenericType) {

}
74
James Couvares

Pour vous qui appréciez l'utilisation des méthodes d'extension:

public static bool IsGenericList(this object o)
{
    var oType = o.GetType();
    return (oType.IsGenericType && (oType.GetGenericTypeDefinition() == typeof(List<>)));
}

Donc on pourrait faire:

if(o.IsGenericList())
{
 //...
}
102
Victor Rodrigues
 bool isList = o.GetType().IsGenericType 
                && o.GetType().GetGenericTypeDefinition() == typeof(IList<>));
13
Eoin Campbell
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();
}
6
Atif Aziz
if(value is IList && value.GetType().GetGenericArguments().Length > 0)
{

}
5
BFree

Sur la base de la réponse de Victor Rodrigues, nous pouvons imaginer une autre méthode pour les génériques. En fait, la solution d'origine peut être réduite à seulement deux lignes:

public static bool IsGenericList(this object Value)
{
    var t = Value.GetType();
    return t.IsGenericType && t.GetGenericTypeDefinition() == typeof(List<>);
}

public static bool IsGenericList<T>(this object Value)
{
    var t = Value.GetType();
    return t.IsGenericType && t.GetGenericTypeDefinition() == typeof(List<T>);
}
3
James M

Voici une implémentation qui fonctionne dans .NET Standard et fonctionne contre les interfaces:

    public static bool ImplementsGenericInterface(this Type type, Type interfaceType)
    {
        return type
            .GetTypeInfo()
            .ImplementedInterfaces
            .Any(x => x.GetTypeInfo().IsGenericType && x.GetGenericTypeDefinition() == interfaceType);
    }

Et voici les tests (xunit):

    [Fact]
    public void ImplementsGenericInterface_List_IsValidInterfaceTypes()
    {
        var list = new List<string>();
        Assert.True(list.GetType().ImplementsGenericInterface(typeof(IList<>)));
        Assert.True(list.GetType().ImplementsGenericInterface(typeof(IEnumerable<>)));
        Assert.True(list.GetType().ImplementsGenericInterface(typeof(IReadOnlyList<>)));
    }

    [Fact]
    public void ImplementsGenericInterface_List_IsNotInvalidInterfaceTypes()
    {
        var list = new List<string>();
        Assert.False(list.GetType().ImplementsGenericInterface(typeof(string)));
        Assert.False(list.GetType().ImplementsGenericInterface(typeof(IDictionary<,>)));
        Assert.False(list.GetType().ImplementsGenericInterface(typeof(IComparable<>)));
        Assert.False(list.GetType().ImplementsGenericInterface(typeof(DateTime)));
    }
3
Jeff Siemens

La meilleure façon serait probablement de faire quelque chose comme ceci:

IList list = value as IList;

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

Cela vous donnera une flexibilité maximale et vous permettra également de travailler avec de nombreux types différents qui implémentent l'interface IList.

0
Andrew Hare

J'utilise le code suivant:

public bool IsList(Type type) => IsGeneric(type) && (
            (type.GetGenericTypeDefinition() == typeof(List<>))
            || (type.GetGenericTypeDefinition() == typeof(IList<>))
            );
0
Yashar Aliabbasi