c# – 如何获取属性属性的属性?

前端之家收集整理的这篇文章主要介绍了c# – 如何获取属性属性的属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在自定义属性中找到应用自定义属性属性类型.

例如:

[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;
}
原文链接:https://www.f2er.com/csharp/92674.html

猜你在找的C#相关文章