确定Type是枚举类型的通用列表

时间:2015-01-04 23:48:23

标签: c# .net generics enums

我需要确定给定类型是否为枚举类型的通用列表。

我想出了以下代码:

void Main()
{
    TestIfListOfEnum(typeof(int));
    TestIfListOfEnum(typeof(DayOfWeek[]));
    TestIfListOfEnum(typeof(List<int>));
    TestIfListOfEnum(typeof(List<DayOfWeek>));
    TestIfListOfEnum(typeof(List<DayOfWeek>));
    TestIfListOfEnum(typeof(IEnumerable<DayOfWeek>));
}

void TestIfListOfEnum(Type type)
{
    Console.WriteLine("Object Type: \"{0}\", List of Enum: {1}", type, IsListOfEnum(type));
}

bool IsListOfEnum(Type type)
{
    var itemInfo = type.GetProperty("Item");
    return (itemInfo != null) ? itemInfo.PropertyType.IsEnum : false;
}

这里是上面代码的输出:

Object Type: "System.Int32", List of Enum: False
Object Type: "System.DayOfWeek[]", List of Enum: False
Object Type: "System.Collections.Generic.List`1[System.Int32]", List of Enum: False
Object Type: "System.Collections.Generic.List`1[System.DayOfWeek]", List of Enum: True
Object Type: "System.Collections.Generic.List`1[System.DayOfWeek]", List of Enum: True
Object Type: "System.Collections.Generic.IEnumerable`1[System.DayOfWeek]", List of Enum: False

除了最后一个例子,所有输出正是我想要的。它没有检测到typeof(IEnumerable<DayOfWeek>)是枚举类型的集合。

有人知道我在最后一个例子中如何检测枚举类型吗?

3 个答案:

答案 0 :(得分:4)

如果您想测试一个类型,那么它是IEnumerable<T>类型Tenum,您可以执行以下操作。

首先,获取可枚举枚举的类型的方法:

    public static IEnumerable<Type> GetEnumerableTypes(Type type)
    {
        if (type.IsInterface)
        {
            if (type.IsGenericType
                && type.GetGenericTypeDefinition() == typeof(IEnumerable<>))
            {
                yield return type.GetGenericArguments()[0];
            }
        }
        foreach (Type intType in type.GetInterfaces())
        {
            if (intType.IsGenericType
                && intType.GetGenericTypeDefinition() == typeof(IEnumerable<>))
            {
                yield return intType.GetGenericArguments()[0];
            }
        }
    }

然后:

    public static bool IsEnumerableOfEnum(Type type)
    {
        return GetEnumerableTypes(type).Any(t => t.IsEnum);
    }

答案 1 :(得分:2)

您可以像这样获取IEnumerable<T>的类型:

Type enumerableType = enumerable.GetType().GenericTypeArguments[0];

然后您可以通过检查该类型是否可分配给类型为Enum的变量(枚举的基类)来测试它是否为枚举:

typeof(Enum).IsAssignableFrom(enumerableType)

答案 2 :(得分:1)

这是一个简单的方法:

public static bool TestIfSequenceOfEnum(Type type)
{
    return (type.IsInterface ? new[] { type } : type.GetInterfaces())
        .Where(i => i.IsGenericType && i.GetGenericTypeDefinition() == typeof(IEnumerable<>))
        .Any(i => i.GetGenericArguments().First().IsEnum);
}

基本上,提取该类型实现的所有接口,找到所有IEnumerable<T>并返回true,如果这些T中的任何一个是枚举。请记住,具体类可以多次实现IEnumerable<T>(使用不同的T)。

如果type是一个类或者它是一个接口,这都有效。