Finding the attributes on the properties of an ins

2019-09-11 18:19发布

Given an instance of a class I want to set properties on attributes at runtime.

So I tried this, but as far as I can tell this finds the attributes on the class not the instance, so any changes I make to the attribute properties have no effect.

var properties = myObject.GetType().GetProperties();

foreach (object prop in properties)
{
   var attribute =prop.GetCustomAttributes(typeof(MyAttribute), true)[0];
   //attribute.MyProp do some stuff
}

If I try using type descriptor like below, there is no way of getting to the attributes on the properties.

var myObject= (MyClass) object;
PropertyDescriptorCollection props = TypeDescriptor.GetProperties(myObject);

//There is no props[0].GetCustomAttributes(

标签: c# reflection
1条回答
混吃等死
2楼-- · 2019-09-11 18:38

Attributes are metadata you apply to a Type, or a Member of a Type, not an instance. If you are applying values to a specific instance of a class, shouldn't you consider using properties/fields?

查看更多
登录 后发表回答