c# – 如何通过Reflection获取属性的DisplayAttribute?

前端之家收集整理的这篇文章主要介绍了c# – 如何通过Reflection获取属性的DisplayAttribute?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个这样的帮助方法获取PropertyName(试图避免魔术字符串)
public static string GetPropertyName<T>(Expression<Func<T>> expression)
        {
            var body = (MemberExpression) expression.Body;
            return body.Member.Name;
        }

不过有时候,我的PropertyNames也没有命名.所以我宁愿使用DisplayAttribute.

[Display(Name = "Last Name")]
public string Lastname {get; set;}

请注意我正在使用Silverlight 4.0.我找不到这个通常的命名空间DisplayAttributeName属性.

如何更改我的方法来读取属性(如果可用的话)呢?

非常感谢,

解决方法

这应该工作:
public static string GetPropertyName<T>(Expression<Func<T>> expression)
{
    MemberExpression propertyExpression = (MemberExpression)expression.Body;
    MemberInfo propertyMember = propertyExpression.Member;

    Object[] displayAttributes = propertyMember.GetCustomAttributes(typeof(DisplayAttribute),true);
    if(displayAttributes != null && displayAttributes.Length == 1)
        return ((DisplayAttribute)displayAttributes[0]).Name;

    return propertyMember.Name;
}
原文链接:https://www.f2er.com/csharp/92176.html

猜你在找的C#相关文章