例如,我有一个具有属性和属性的类:
[MyDisplay(Name = "Class name", Description = "Class description.")]
public class MyClass
{
[MyDisplay(Name = "Property name", Description = "Property description.")]
public int MyProperty { get; set; }
}
我想获取属性值,例如
// Get type attribute...
string className = MyClass.Attributes.MyDisplay.Name;
// Get member attribute...
string propertyDescription =
MyClass.Properties.MyProperty.Attributes.MyDisplay.Description;
如何得到它?我想要使用属性数据自动填充 MyClass 的附加字段的代码。访问属性值(如实例值)似乎非常方便 - 用于绑定等。
主要的复杂性是用名称与属性和属性名称相同的对象填充 MyClass.Attributes 和 MyClass.Properties 集合。所以我认为这个集合必须是静态的。并且 MyClass.Properties 集合中的每个对象也必须像 MyClass.Attributes 集合一样具有 Attributes 集合(例如,MyProperty.Attributes)。