c# – 如何获取当前属性的PropertyDescriptor?

前端之家收集整理的这篇文章主要介绍了c# – 如何获取当前属性的PropertyDescriptor?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我如何获取PropertyDescriptor的属性在哪里?例如:
[MyAttribute("SomeText")]
public string MyProperty
{
get{....}
set
{
 // here I want to get propertyDecriptor for this property.
}
}

谢谢.

解决方法

你可以试试这个:
public string Test
        {
            get
            {
                //Get properties for this
                System.ComponentModel.PropertyDescriptorCollection pdc = System.ComponentModel.TypeDescriptor.GetProperties( this );

                //Get property descriptor for current property
                System.ComponentModel.PropertyDescriptor pd = pdc[ System.Reflection.MethodBase.GetCurrentMethod().Name ];
            }
        }
原文链接:https://www.f2er.com/csharp/94497.html

猜你在找的C#相关文章