如何读取DisplayAttribute.名称属性

本文关键字:DisplayAttribute 属性 读取 何读取 | 更新日期: 2023-09-27 18:03:04

这似乎是一个相当琐碎的任务,但是我看不出如何读取DisplayAttribute。在我的代码中命名属性

我有一个类的属性:
[Display(Name="A Nice Field")]
public string SomeField{get;set;}

在我的代码中,我遇到了一个路障。

        object[] attrs = prop.GetCustomAttributes(true);
        foreach (Attribute attr in attrs)
        {
            if (attr is DisplayAttribute)
            {
                // How do I read the attr Name property?
            }
        }

如何读取DisplayAttribute.名称属性

var displayAttribute = (DisplayAttribute)(prop.GetCustomAttributes(typeof(DisplayAttribute), true).FirstOrDefault());
相关文章:
  • 没有找到相关文章