我需要在自定义属性中找到应用自定义属性的属性类型.
例如:
[MyAttribute] string MyProperty{get;set;}
给定MyAttribute的实例,我如何获取MyProperty的类型描述符?
换句话说,我正在寻找与System.Type.GetCustomAttributes()
解决方法
属性本身对于用它进行装饰的对象一无所知.但您可以在您注销该属性时注入此信息.
在某些时候,您必须使用与以下代码类似的代码来检索该属性.
在某些时候,您必须使用与以下代码类似的代码来检索该属性.
PropertyInfo propertyInfo = typeof(MyType).GetProperty("MyProperty"); Object[] attribute = propertyInfo.GetCustomAttributes(typeof(MyAttribute),true); if (attribute.Length > 0) { MyAttribute myAttribute = (MyAttribute) attributes[0]; // Inject the type of the property. myAttribute.PropertyType = propertyInfo.PropertyType; // Or inject the complete property info. myAttribute.PropertyInfo = propertyInfo; }