标签: c# reflection mef propertyinfo
假设我有一个类如下,其中MyProperty由MEF组成:
MyProperty
class Foo { [Import] public Bar MyProperty { get; set; } }
使用反射检查此装配时,是否可以确定属性是否由MEF导入?我注意到Attributes类中的PropertyInfo属性,但它是空的。
Attributes
PropertyInfo
答案 0 :(得分:1)
您应该使用GetCustomAttributes()方法。
GetCustomAttributes()