Как GetType (). GetFields с пользовательским атрибутом? - PullRequest
5 голосов
/ 01 декабря 2011

этот старый код возвращает список полей, украшенных атрибутом в вызове метода, используя отражение

Есть ли способ заменить его на TypeDescripter или LINQ?

    public static FieldInfo[] GetFieldsWithAttribute(Type type, Attribute attr, bool onlyFromType)
    {
        System.Reflection.FieldInfo[] infos = type.GetFields();
        int cnt = 0;
        foreach (System.Reflection.FieldInfo info in infos)
        {
            if (info.GetCustomAttributes(attr.GetType(), false).Length > 0)
            {
                if (onlyFromType && info.DeclaringType != type)
                    continue;

                cnt++;
            }
        }

        System.Reflection.FieldInfo[] rc = new System.Reflection.FieldInfo[cnt];
        // now reset !
        cnt = 0;

        foreach (System.Reflection.FieldInfo info in infos)
        {
            if (info.GetCustomAttributes(attr.GetType(), false).Length > 0)
            {
                if (onlyFromType && info.DeclaringType != type)
                    continue;

                rc[cnt++] = info;
            }
        }

        return rc;
    }

Ответы [ 2 ]

4 голосов
/ 01 декабря 2011
public static FieldInfo[] GetFieldsWithAttribute(Type type, Attribute attr, bool onlyFromType)
{
    System.Reflection.FieldInfo[] infos = type.GetFields();
    var selection = 
       infos.Where(info =>
         (info.GetCustomAttributes(attr.GetType(), false).Length > 0) &&
         ((!onlyFromType) || (info.DeclaringType == type)));

    return selection.ToArray();
}

Если вы можете вернуть IEnumerable<FieldInfo>, вы сможете вернуть выбор непосредственно.

1 голос
/ 01 декабря 2011

Как насчет:

return type
    .GetFields()
    .Where(fi => 
        fi.GetCustomAttributes(attr.GetType(), false).Length > 0 
        && !(onlyFromType && fi.DeclaringType != type))
    .ToArray();
...