public static string ProductHelper(this Product p) {
    // Need to get the DisplayName value for p.Name property
}

EDIT:

[MetadataType(typeof(ProductMetadata))]
public partial class Product {
    public class ProductMetadata {
        [DisplayName("Product name")]
        public object Name { get; set; }
    }
}
link|improve this question

72% accept rate
feedback

1 Answer

up vote 2 down vote accepted
Type type = typeof(Product);
DisplayNameAttribute att = (DisplayNameAttribute)type.GetProperty("Name").GetCustomAttributes(typeof(DisplayNameAttribute), true).SingleOrDefault();

This assumes the attribute always exists. Modify for the case when it may not.

edit:
To get the value string x = att.DisplayName;

If Product is a base class use Type type = p.GetType(); instead.

link|improve this answer
What if the DisplayName for the Product's Name property is provided through a MetaData class (ProductMetaData)? Please see the edited update. – randomguy Aug 15 '10 at 15:27
Check the class for that attribute and get a reference to the specified type. Reflect back on the properties in that type instead. – jwsample Aug 15 '10 at 22:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.