小编典典

反射 - 获取属性的属性名称和值

all

我有一个类,我们称它为 Book,并带有一个名为 Name 的属性。有了这个属性,我就有了一个与之关联的属性。

public class Book
{
    [Author("AuthorName")]
    public string Name
    {
        get; private set; 
    }
}

在我的主要方法中,我使用反射并希望获取每个属性的每个属性的键值对。所以在这个例子中,我希望看到属性名称的“作者”和属性值的“作者名称”。

问题:如何使用反射获取我的属性的属性名称和值?


阅读 113

收藏
2022-04-18

共1个答案

小编典典

用于获取实例typeof(Book).GetProperties()数组。PropertyInfo然后GetCustomAttributes()在每个上使用PropertyInfo以查看它们中的任何一个是否具有AuthorAttribute
类型。如果是这样,您可以从属性信息中获取属性的名称,并从属性中获取属性值。

沿着这些思路扫描具有特定属性类型的属性的类型并在字典中返回数据(请注意,这可以通过将类型传递到例程中变得更加动态):

public static Dictionary<string, string> GetAuthors()
{
    Dictionary<string, string> _dict = new Dictionary<string, string>();

    PropertyInfo[] props = typeof(Book).GetProperties();
    foreach (PropertyInfo prop in props)
    {
        object[] attrs = prop.GetCustomAttributes(true);
        foreach (object attr in attrs)
        {
            AuthorAttribute authAttr = attr as AuthorAttribute;
            if (authAttr != null)
            {
                string propName = prop.Name;
                string auth = authAttr.Name;

                _dict.Add(propName, auth);
            }
        }
    }

    return _dict;
}
2022-04-18