C# 中属性的自定义属性



我有一个类 人有两个属性

public sealed class Person
{
[Description("This is the first name")]
public string FirstName { get; set; }
[Description("This is the last name")]
public string LastName { get; set; }
}

在我的控制台应用程序代码中,我想为每个实例的每个属性获取描述属性的值.....

类似于

Person myPerson = new Person();
myPerson.LastName.GetDescription() // method to retrieve the value of the attribute

是否可以完成此任务?有人可以建议我一种方法吗?此致敬意Fab<</p>

div class="one_answers">

.LastName返回一个字符串,因此您无法从那里执行太多操作。最终,您需要为此提供PropertyInfo。有两种方法可以做到这一点:

  • 通过Expression(也许SomeMethod<Person>(p => p.LastName)
  • string(可能通过nameof

例如,您可以执行以下操作:

var desc = Helper.GetDescription<Person>(nameof(Person.LastName));

var desc = Helper.GetDescription(typeof(Person), nameof(Person.LastName));

像这样:

var attrib = (DescriptionAttribute)Attribute.GetCustomAttribute(
    type.GetProperty(propertyName), typeof(DescriptionAttribute));
return attrib?.Description;

使用这种语法是不可能的。通过使用表达式树可以...例如:

public static class DescripionExtractor 
{
    public static string GetDescription<TValue>(Expression<Func<TValue>> exp) 
    {
        var body = exp.Body as MemberExpression;
        if (body == null) 
        {
            throw new ArgumentException("exp");
        }
        var attrs = (DescriptionAttribute[])body.Member.GetCustomAttributes(typeof(DescriptionAttribute), true);
        if (attrs.Length == 0) 
        {
            return null;
        }
        return attrs[0].Description;
    }
}

然后:

Person person = null;
string desc = DescripionExtractor.GetDescription(() => person.FirstName);

请注意,person的值无关紧要。它可以null并且一切都会正常工作,因为person并没有真正访问。只有它的类型很重要。

相关内容

  • 没有找到相关文章

最新更新