不用枚举就可以枚举枚举值

因为

我必须强制枚举,但是我希望它像possbile一样通用。我该如何更换Cast<XX>()零件propertyType

foreach (var prop in MainType.GetProperties().Where(x => x.PropertyType.IsEnum))
{
     var x = new { name = prop.Name, values = new List<object>() };

     foreach (var v in Enum.GetValues(prop.PropertyType).Cast<XX>())
         x.values.Add(new { p = v.GetAttribute<DescriptionAttribute>().Description, 
                            c = v.GetAttribute<DefaultValueAttribute>().Value });

     o.Add(x);
}


    public static TAttribute GetAttribute<TAttribute>(this Enum value) where TAttribute : Attribute
    {
        var type = value.GetType();
        var name = Enum.GetName(type, value);
        return type.GetField(name)
            .GetCustomAttributes(false)
            .OfType<TAttribute>()
            .SingleOrDefault();
    }

public enum JobApplicationState : short
{
    [Description("Active")]
    [DefaultValue(typeof(string), "bg-primary text-highlight")]
    Active = 1,
    [Description("Passive")]
    [DefaultValue(typeof(string), "bg-grey text-highlight")]
    Passive = 2,
    [Description("Rejected")]
    [DefaultValue(typeof(string), "bg-danger text-highlight")]
    Rejected = 3,
    [Description("Accepted")]
    [DefaultValue(typeof(string), "bg-success text-highlight")]
    Accepted = 4
}

这工作!

foreach (MemberInfo m in prop.PropertyType.GetFields())
{
    if (m.GetCustomAttributes(typeof(DescriptionAttribute), true).FirstOrDefault() != null && m.GetCustomAttributes(typeof(DefaultValueAttribute), true).FirstOrDefault() != null)
        {
             x.values.Add(
                 new
                 {
                     p = ((DescriptionAttribute)m.GetCustomAttributes(typeof(DescriptionAttribute), true).FirstOrDefault()).Description,
                     c = ((DefaultValueAttribute)m.GetCustomAttributes(typeof(DefaultValueAttribute), true).FirstOrDefault()).Value
        });
    } 
}
攻击

您应该认识到,枚举只不过是围绕整数值的命名包装器。我已经在这里描述了枚举的工作方式的一些细节:在C#中将int转换为枚举

这里的问题是从枚举中获取属性值。您可能会想到,这个问题是关于从类型获取属性的,而不是关于从获取属性的(没有这样的事情)。尽管如此,如果您调用类似的方法void Foo<T>(T myEnum),即使“在现实生活中” myEnum的值作为整数类型传递,类型T仍将保留所有必要的信息。

从这也可以推断出你其实找的属性MemberInfo“第T,因为你正在寻找的类型(例如枚举)的成员。同样,所有详细信息都在我的文章中有关枚举的工作方式。因此,答案是:

foreach (MemberInfo m in prop.PropertyType.GetFields())
{
    // use m.GetAttribute(...) 
}

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章